-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run `poe test` from this repository's `dev` Docker container. update the workflow for building images to also run tests Signed-off-by: Bryant Finney <[email protected]>
- Loading branch information
1 parent
4669c65
commit 003adc4
Showing
2 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
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
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,27 @@ | ||
name: 🧪 poe test | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "**/*.py" | ||
- "*.py" | ||
- .github/workflows/poe-test.yml | ||
- pyproject.toml | ||
- sample-config.yml | ||
|
||
jobs: | ||
run: | ||
container: | ||
image: ghcr.io/${{ github.repository }}/dev:main | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
pull-requests: write | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: poetry install | ||
- run: poe test |