-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from hnez/ci-changes
CI: changes in preparation for automated publication
- Loading branch information
Showing
3 changed files
with
32 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Check and Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
codespell: | ||
name: Codespell | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: make qa-codespell | ||
|
||
ruff: | ||
name: Python Format and Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: make qa-ruff | ||
|
||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# include tags and full history for setuptools_scm | ||
fetch-depth: 0 | ||
- run: make build | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist |
This file was deleted.
Oops, something went wrong.