Skip to content
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

Bump pypa/cibuildwheel from 1.11.0 to 2.18.1

Bump pypa/cibuildwheel from 1.11.0 to 2.18.1 #54

Workflow file for this run

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