Skip to content

Commit

Permalink
Merge pull request #20 from iloveitaly/recent-py-support
Browse files Browse the repository at this point in the history
Python 3.11 support
  • Loading branch information
hongquan committed Mar 15, 2024
2 parents 4070cf1 + 294f1e9 commit a320d56
Show file tree
Hide file tree
Showing 3 changed files with 683 additions and 591 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
name: Run test

on:
push
on: push

jobs:
test:
name: Test
matrix-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- name: ASDF Parse
uses: kota65535/[email protected]
id: versions
- uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: abatilo/actions-poetry@v2
python-version: "${{ matrix.python-version }}"
- uses: abatilo/[email protected]
with:
poetry-version: 1.7.1
- run: poetry install --no-root
- run: poetry run pytest

0 comments on commit a320d56

Please sign in to comment.