This repository has been archived by the owner on May 21, 2024. It is now read-only.
Bump pypa/cibuildwheel from 1.11.0 to 2.18.1 #54
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: Main | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- 2.7 | |
- 3.5 | |
- 3.9 | |
name: Dev ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build and get requirements | |
run: pip install .[dev] | |
- name: Test | |
run: pytest |