Skip to content

Commit

Permalink
beignet.func.space
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00b1 committed Apr 22, 2024
1 parent 17dda63 commit a910bff
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ jobs:
with:
name: "python-package-distributions"
path: "dist/"
pytest:
strategy:
matrix:
platform:
- "macos-latest"
- "ubuntu-latest"
- "windows-latest"
python:
- "3.10"
- "3.11"
runs-on: ${{ matrix.platform }}
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: ${{ matrix.python }}
- run: "python -m pip install --editable '.[test]'"
- run: "python -m pytest"
- env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
uses: "codecov/codecov-action@v3"
pypi:
environment:
name: "pypi.org"
Expand Down Expand Up @@ -58,7 +79,7 @@ jobs:
- uses: "chartboost/ruff-action@v1"
with:
args: "format --check"
test-pypi:
testpypi:
environment:
name: "test.pypi.org"
url: "https://test.pypi.org/project/beignet"
Expand Down

0 comments on commit a910bff

Please sign in to comment.