Skip to content

Build develop

Build develop #24

Workflow file for this run

name: "Build"
run-name: "Build ${{ github.ref_name }}"
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
python-version: [ 3.5, 3.9 ]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run:
make install
- name: Run tests
run:
make test
- name: Upload coverage
if: matrix.python-version == '3.9'
uses: codecov/codecov-action@v1
with:
directory: ./_build/coverage