Skip to content

Commit

Permalink
add check_wheels_from_pypi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
taishi-i committed May 22, 2022
1 parent ed57e1a commit 726c5da
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check_wheels_from_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Python package from PyPI

on: push

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', "3.11-dev"]
os: [ubuntu-latest, macos-latest]
exclude:
- os: macos-latest
python-version: "3.11-dev"

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install nagisa
- name: Test with pytest
run: |
pytest

0 comments on commit 726c5da

Please sign in to comment.