Skip to content

Set shell to bash in makefile #70

Set shell to bash in makefile

Set shell to bash in makefile #70

Workflow file for this run

name: test
on:
push
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: make setup-test-unit
- run: . venv/bin/activate && make test && python -m coverage xml
- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml