- fix macos ci #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: tests | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: pip | |
run: | | |
pip install codecov | |
pip install coverage | |
- name: test | |
run: | | |
coverage run jsn.py -i example.jsn -o test.json -I import_dir | |
codecov |