Browse Source

fix github actions

pull/3/head
Brett Langdon 5 years ago
parent
commit
8257bfab0b
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
2 changed files with 2 additions and 5 deletions
  1. +1
    -5
      .github/workflows/build.yml
  2. +1
    -0
      .github/workflows/test.yml

+ 1
- 5
.github/workflows/build.yml View File

@ -8,19 +8,15 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macOS-latest]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=1.9.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl

+ 1
- 0
.github/workflows/test.yml View File

@ -4,6 +4,7 @@ on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Black Check


Loading…
Cancel
Save