Skip to content

feat(workstation): set session duration as 0 when stopping #2

feat(workstation): set session duration as 0 when stopping

feat(workstation): set session duration as 0 when stopping #2

Workflow file for this run

name: Codecov
on:
push:
branches: [ main ]
permissions:
contents: write
packages: write
id-token: write
jobs:
codecov:
name: Code Coverage
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- id: auth
name: Authenticate with Google Cloud
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: projects/1007056531311/locations/global/workloadIdentityPools/ci-nada-prod/providers/ci-nada-prod
service_account: [email protected]
- uses: docker/login-action@v3
name: Login to Google Artifact Registry
with:
registry: europe-north1-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.auth.outputs.access_token }}
- name: Run tests with coverage
run: make cover
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.txt
fail_ci_if_error: false
verbose: true