Skip to content

Commit

Permalink
Add ci.yaml change
Browse files Browse the repository at this point in the history
  • Loading branch information
raychan committed May 3, 2024
1 parent e83ac1f commit 0709574
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: build
on: push
jobs:
tox:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tox:
- '3.8'
- '3.10'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }
- run: pip install tox
- run: tox -e py

0 comments on commit 0709574

Please sign in to comment.