Skip to content

Commit

Permalink
build: try GitHub Actions CI for runing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Aug 20, 2019
1 parent edc83a9 commit 4559653
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python package

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
# GitHub Actions / build (2.7) successful in 1h 30m 7s
python-version: [3.7] # [2.7, 3.5, 3.6,, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt || true
- name: make lint
run: |
make lint
- name: make test
run: |
python ./configure.py
make test

0 comments on commit 4559653

Please sign in to comment.