Skip to content

fix: replace deprecated ci runner #21

fix: replace deprecated ci runner

fix: replace deprecated ci runner #21

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Pull Request
on:
pull_request:
branches: [main]
jobs:
test-unit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7.x', '3.8.x']
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Run python unit tests
run: make setup_dev test
- name: Codecov
uses: codecov/codecov-action@v1