Skip to content

Commit

Permalink
Add workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
realsuayip committed Jan 19, 2024
1 parent bdd3650 commit b5cee57
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Python package

on: [push]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py

0 comments on commit b5cee57

Please sign in to comment.