chore(deps): Bump codecov/codecov-action from 4.5.0 to 4.6.0 #1076
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/[email protected] | |
- | |
name: Set up QEMU | |
uses: docker/[email protected] | |
- | |
name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/[email protected] | |
if: github.ref == 'refs/heads/main' | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: base | |
run: make base | |
- | |
name: unit-tests | |
run: make unit-tests | |
- | |
name: codecov | |
uses: codecov/[email protected] | |
with: | |
files: ./_out/coverage-unit-tests.txt | |
- | |
name: unit-tests-race | |
run: make unit-tests-race | |
- | |
name: lint | |
run: make lint | |
- | |
name: runtime | |
run: make runtime | |
- | |
name: image-runtime | |
run: make image-runtime | |
- | |
name: push-image-runtime | |
if: github.ref == 'refs/heads/main' | |
env: | |
PUSH: "true" | |
run: make image-runtime | |
- | |
name: push-image-runtime-latest | |
if: github.ref == 'refs/heads/main' | |
env: | |
PUSH: "true" | |
run: make image-runtime TAG=latest |