update publish action to fix bug for pypa/cibuildwheel<2.16.5 #88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check style with Flake8 | |
env: | |
CLONE_PATH: ${{ github.workspace }} | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
check_style: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup python with tox | |
run: $CLONE_PATH/.github/workflows/install_tox.sh | |
- name: Check style | |
run: | | |
pushd $CLONE_PATH | |
tox -r -e check | |
popd |