Skip to content

Turn on GitHub Actions #3

Turn on GitHub Actions

Turn on GitHub Actions #3

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
make init-dev
- name: Lint with flake8
run: |
make check
- name: Test with
run: |
make test