aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 491591cca7d60cbc800154b6461f39be128bb35a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
on: [push, pull_request]
name: CI
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: Check out source code
        uses: actions/checkout@v2
      - name: Set up Python
        uses: actions/setup-python@v2
      - name: Install dependencies
        run: |
          pip install wheel
      - name: Test
        run: |
          python setup.py test