This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
ci: [pre-commit.ci] pre-commit autoupdate #147
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: main | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "**" | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
branches: | |
- main | |
jobs: | |
context: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
name: context | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "${GITHUB_CONTEXT}" | |
- name: Dump job context | |
env: | |
JOB_CONTEXT: ${{ toJson(job) }} | |
run: echo "${JOB_CONTEXT}" | |
- name: Dump steps context | |
env: | |
STEPS_CONTEXT: ${{ toJson(steps) }} | |
run: echo "${STEPS_CONTEXT}" | |
- name: Dump runner context | |
env: | |
RUNNER_CONTEXT: ${{ toJson(runner) }} | |
run: echo "${RUNNER_CONTEXT}" | |
- name: Dump strategy context | |
env: | |
STRATEGY_CONTEXT: ${{ toJson(strategy) }} | |
run: echo "${STRATEGY_CONTEXT}" | |
- name: Dump matrix context | |
env: | |
MATRIX_CONTEXT: ${{ toJson(matrix) }} | |
run: echo "${MATRIX_CONTEXT}" | |
- name: Dump environment variables | |
run: ${{ (runner.os == 'Windows') && 'gci env:' || 'env | sort' }} | |
python: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python: [3.12] | |
name: python | |
runs-on: ${{ matrix.os }} | |
env: | |
ENVIRONMENT: ci | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Poetry | |
run: | | |
pipx install poetry | |
poetry config virtualenvs.in-project true | |
- name: Set up Python | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: poetry | |
- name: Set up environment | |
if: ${{ runner.os != 'Windows' }} | |
run: | | |
echo "POETRY_CACHE_DIR=$(poetry config cache-dir)" >> ${GITHUB_ENV} | |
echo "$(poetry env info --path)/bin" >> ${GITHUB_PATH} | |
- name: Set up environment (Windows) | |
if: ${{ runner.os == 'Windows' }} | |
run: | | |
"POETRY_CACHE_DIR=$(poetry config cache-dir)" | Out-File -FilePath ${env:GITHUB_ENV} -Append | |
"$(poetry env info --path)/Scripts" | Out-File -FilePath ${env:GITHUB_PATH} -Append | |
- name: Poetry cache | |
if: ${{ steps.setup-python.outputs.cache-hit != 'true' }} | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.POETRY_CACHE_DIR }} | |
key: pypoetry-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
pypoetry-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }} | |
pypoetry-${{ runner.os }} | |
- name: Install dependencies | |
run: poetry install --no-interaction | |
- name: Lint and test | |
run: make lint test | |
docker: | |
name: docker | |
runs-on: ubuntu-latest | |
env: | |
DOCKERHUB_IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} | |
GHCR_IMAGE_NAME: ghcr.io/${{ github.repository }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache buildkit mounts | |
uses: actions/cache@v3 | |
with: | |
path: | | |
var-cache-apt | |
root-cache-pip | |
root-cache-pypoetry | |
key: buildkit-mounts-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
buildkit-mounts-${{ runner.os }} | |
- name: Inject var-cache-apt into docker | |
uses: reproducible-containers/[email protected] | |
with: | |
cache-source: var-cache-apt | |
cache-target: /var/cache/apt | |
- name: Inject root-cache-pip into docker | |
uses: reproducible-containers/[email protected] | |
with: | |
cache-source: root-cache-pip | |
cache-target: /root/.cache/pip | |
- name: Inject root-cache-pypoetry into docker | |
uses: reproducible-containers/[email protected] | |
with: | |
cache-source: root-cache-pypoetry | |
cache-target: /root/.cache/pypoetry | |
- name: Build CI image | |
id: build-ci | |
env: | |
ENVIRONMENT: ci | |
uses: docker/build-push-action@v5 | |
with: | |
target: ${{ env.ENVIRONMENT }} | |
cache-from: | | |
${{ env.DOCKERHUB_IMAGE_NAME }}:dev | |
${{ env.GHCR_IMAGE_NAME }}:dev | |
${{ env.DOCKERHUB_IMAGE_NAME }}:cache | |
${{ env.GHCR_IMAGE_NAME }}:cache | |
load: true | |
- name: Run CI image | |
run: docker run --rm ${{ steps.build-ci.outputs.imageid }} | |
- name: Docker metadata | |
id: docker_metadata | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ env.DOCKERHUB_IMAGE_NAME }} | |
${{ env.GHCR_IMAGE_NAME }} | |
- name: Login to Docker Hub | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GHCR | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push dev image | |
if: ${{ github.event_name != 'pull_request' }} | |
env: | |
ENVIRONMENT: dev | |
uses: docker/build-push-action@v5 | |
with: | |
target: ${{ env.ENVIRONMENT }} | |
cache-from: | | |
${{ env.DOCKERHUB_IMAGE_NAME }}:dev | |
${{ env.GHCR_IMAGE_NAME }}:dev | |
${{ env.DOCKERHUB_IMAGE_NAME }}:cache | |
${{ env.GHCR_IMAGE_NAME }}:cache | |
cache-to: type=inline | |
tags: | | |
${{ env.DOCKERHUB_IMAGE_NAME }}:dev | |
${{ env.GHCR_IMAGE_NAME }}:dev | |
push: ${{ github.event_name != 'pull_request' }} | |
- name: Build and push prod image | |
if: ${{ github.event_name != 'pull_request' }} | |
env: | |
ENVIRONMENT: prod | |
uses: docker/build-push-action@v5 | |
with: | |
cache-from: | | |
${{ env.DOCKERHUB_IMAGE_NAME }}:dev | |
${{ env.GHCR_IMAGE_NAME }}:dev | |
${{ env.DOCKERHUB_IMAGE_NAME }}:cache | |
${{ env.GHCR_IMAGE_NAME }}:cache | |
cache-to: | | |
type=registry,ref=${{ env.DOCKERHUB_IMAGE_NAME }}:cache,mode=max | |
type=registry,ref=${{ env.GHCR_IMAGE_NAME }}:cache,mode=max | |
tags: ${{ steps.docker_metadata.outputs.tags }} | |
labels: ${{ steps.docker_metadata.outputs.labels }} | |
annotations: ${{ steps.docker_metadata.outputs.annotations }} | |
push: ${{ github.event_name != 'pull_request' }} |