Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
myrrc committed Jul 5, 2023
1 parent da09a70 commit 5d9a0ba
Showing 1 changed file with 18 additions and 7 deletions.
25 changes: 18 additions & 7 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
name: Build and test package
name: on push
on: [push]

jobs:
lint: # fail-fast on linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up python ${{ matrix.target.python }}
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip

- run: make install-deps

- name: "lint: black"
run: make black
- name: "lint: isort"
run: make isort

build:
strategy:
matrix:
Expand All @@ -26,12 +43,6 @@ jobs:
cache: pip

- run: make install-deps

- name: "lint: black"
run: make black
- name: "lint: isort"
run: make isort

- run: make build-python-package

- name: upload wheel
Expand Down

0 comments on commit 5d9a0ba

Please sign in to comment.