blob: 1960db297b69d1247c67f02b921c66c9a1900b57 [file] [log] [blame]
name: So, does it work?
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install requirements
run: python -m pip install -Ur requirements.txt
- name: Compile project
run: make