Skip to content

Commit

Permalink
Update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
frmdstryr committed Jan 25, 2022
1 parent 6bedd34 commit 39c2753
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '2.x', '3.x']
python-version: [ '2.7', '3.6', '3.7', '3.8', '3.9', '3.10' ]
name: Test ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Install
- name: Setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install pytest pytest-coverage codecov
pip install -e ./
Expand Down

0 comments on commit 39c2753

Please sign in to comment.