Skip to content

Commit

Permalink
Merge pull request #12 from hnez/ci-changes
Browse files Browse the repository at this point in the history
CI: changes in preparation for automated publication
  • Loading branch information
SmithChart authored Apr 25, 2024
2 parents 4567662 + 43a1677 commit 3dfef2c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 35 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/build.yaml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/check-and-build.yaml
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
18 changes: 0 additions & 18 deletions .github/workflows/qa.yaml

This file was deleted.

0 comments on commit 3dfef2c

Please sign in to comment.