Skip to content

Only a amd64 image for now #5

Only a amd64 image for now

Only a amd64 image for now #5

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- master
push:
branches:
- main
- master
permissions:
contents: read
jobs:
test:
name: Tests & Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Download dependencies
run: make deps
- name: Run tests with coverage
run: make test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false