Skip to content

Adds a GitHub Actions CI configuration for testing and linting (#316) #27

Adds a GitHub Actions CI configuration for testing and linting (#316)

Adds a GitHub Actions CI configuration for testing and linting (#316) #27

Workflow file for this run

name: Tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-test:
name: Run test
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install Python dependencies
run: pip install -r requirements-dev.txt
- name: run tests
run: make test