Skip to content

chore(deps-dev): bump black from 22.12.0 to 24.3.0 in /services/gtfs-rt-archiver-v3 #232

chore(deps-dev): bump black from 22.12.0 to 24.3.0 in /services/gtfs-rt-archiver-v3

chore(deps-dev): bump black from 22.12.0 to 24.3.0 in /services/gtfs-rt-archiver-v3 #232

name: Build and push gtfs-rt-archiver-v3 image
on:
push:
branches:
- 'main'
paths:
- '.github/workflows/build-gtfs-rt-archiver-v3-image.yml'
- 'services/gtfs-rt-archiver-v3/**'
pull_request:
paths:
- '.github/workflows/build-gtfs-rt-archiver-v3-image.yml'
- 'services/gtfs-rt-archiver-v3/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
check:
name: Run static checkers
runs-on: ubuntu-latest
env:
CALITP_BUCKET__GTFS_RT_PARSED: gs://some-test-bucket
CALITP_BUCKET__GTFS_RT_VALIDATION: gs://some-test-bucket
GTFS_RT_VALIDATOR_VERSION: v0.0.0
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- run: curl -sSL https://install.python-poetry.org | python -
- run: cd services/gtfs-rt-archiver-v3 && poetry install && poetry run mypy .
build_push:
name: Package docker image
runs-on: ubuntu-latest
needs: [check]
steps:
- uses: actions/checkout@v2
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: curl -sSL https://install.python-poetry.org | python -
# from https://forcepush.tech/python-package-ci-cd-with-git-hub-actions
- name: Get image tag from pyproject.toml
run: |
cd services/gtfs-rt-archiver-v3
PROJECT_VERSION=$(poetry version --short)
echo "PROJECT_VERSION=$PROJECT_VERSION" >> $GITHUB_ENV
- uses: docker/build-push-action@v2
with:
context: services/gtfs-rt-archiver-v3
push: ${{ github.ref == 'refs/heads/main' }}
tags: ghcr.io/${{github.repository}}/gtfs-rt-archiver-v3:${{env.PROJECT_VERSION}}