Skip to content

turn off attest test #603

turn off attest test

turn off attest test #603

Workflow file for this run

name: Test
on: push
env:
GO_VERSION: 1.22.5
jobs:
test:
strategy:
matrix:
config:
- { platform: linux, arch: amd64 }
- { platform: linux, arch: arm64 }
- { platform: windows, arch: amd64, version: 1809 }
- { platform: windows, arch: amd64, version: ltsc2022 }
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: make test
- name: Upload coverage to Codecov
if: ${{ matrix.config.platform == 'linux' && matrix.config.arch == 'amd64' }}
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}