Bump black from 24.1a1 to 24.3.0 #136
Workflow file for this run
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
name: Test and build | |
env: | |
IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/reaper | |
AWS_DEFAULT_REGION: us-east-1 | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
container: | |
image: python:alpine | |
steps: | |
- uses: actions/checkout@v3 | |
- run: pip install poetry | |
- run: poetry install | |
- run: poetry run pytest | |
docker: | |
needs: [pytest] | |
uses: ./.github/workflows/docker-build.yml | |
secrets: | |
GHCR_BOT_USERNAME: ${{ secrets.GHCR_BOT_USERNAME }} | |
GHCR_BOT_TOKEN: ${{ secrets.GHCR_BOT_TOKEN }} |