Skip to content

build(deps): bump pytest from 9.0.2 to 9.0.3 (#979) #575

build(deps): bump pytest from 9.0.2 to 9.0.3 (#979)

build(deps): bump pytest from 9.0.2 to 9.0.3 (#979) #575

Workflow file for this run

---
name: Stage
on:
workflow_dispatch:
push:
branches:
- dev
jobs:
stage:
runs-on: ubuntu-latest
environment: staging
name: Build and publish early access to GitHub
steps:
- name: Checkout sources
uses: actions/checkout@v6
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements_test.txt
- name: Prepare python environment
run: |
pip install -r requirements.txt -r requirements_test.txt
- name: Test project
run: pytest -v --cov --cov-report=xml:coverage.xml
- name: Set up QEMU
uses: docker/setup-qemu-action@v4.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
- name: Login to GHCR
uses: docker/login-action@v4.1.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PAT }}
- name: Get current date
id: getDate
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Build images and push to GHCR
uses: docker/build-push-action@v7.0.0
with:
context: .
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
tags: ghcr.io/tomerfi/switcher_webapi:early-access
build-args: |
VCS_REF=${{ github.sha }}
BUILD_DATE=${{ steps.getDate.outputs.date }}
VERSION=early-access
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Push coverage report to CodeCov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
fail_ci_if_error: true