Skip to content

Update data

Update data #71

Workflow file for this run

# this workflow will be run on push and pull request events
# it will run specific tests based on all the cases in the tests folder
name: Test Cases
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_cases:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run test cases
run: |
for file in tests/*.py; do
python $file
done
```

Check failure on line 20 in .github/workflows/test_cases.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_cases.yml

Invalid workflow file

You have an error in your yaml syntax on line 20