Skip to content

Commit

Permalink
Add testfile to understand workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
DunklesArchipel committed Jan 18, 2024
1 parent bb262c8 commit a4dba0d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Validate Examples

on:
push: { branches: [ "main" ] }
pull_request: { branches: [ "main" ] }

jobs:
verify-file-schemas:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with: { submodules: recursive }
- name: create file in data
shell: bash -l {0}
run: |
cd data
touch foo.txt
ls
- name: verify that the file is there
shell: bash -l {0}
run: |
ls

0 comments on commit a4dba0d

Please sign in to comment.