Skip to content

Commit

Permalink
Run CI on GitHub Actions also
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Sep 14, 2019
1 parent fb021d8 commit d206b36
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [push]

jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
- windows-2019
python:
- '2.7'
- '3.7'
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- run: python run.py deps
- run: python run.py ci

0 comments on commit d206b36

Please sign in to comment.