Skip to content

Commit

Permalink
update test yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Nov 11, 2023
1 parent 74d3b08 commit e2597e1
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/package.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,6 @@ concurrency:
cancel-in-progress: true

jobs:
lint:
name: Check Source Style
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Check source code
run: |
status=0
if ! pipx run ruff check --output-format=github binpickle; then
status=1
fi
pipx run ruff format --diff binpickle
if [ $status -ne 0 ]; then
exit $status
fi
test:
name: Test with Python ${{matrix.python}} on ${{matrix.platform}}
runs-on: ${{matrix.platform}}-latest
Expand Down Expand Up @@ -92,7 +72,7 @@ jobs:
sdist:
name: Build Source Packages
runs-on: ubuntu-latest
needs: [test, lint, no-extras]
needs: [test, no-extras]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit e2597e1

Please sign in to comment.