Skip to content

ci: fix 1ES pool label name #1412

ci: fix 1ES pool label name

ci: fix 1ES pool label name #1412

Workflow file for this run

name: unit-tests
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches: [main]
paths-ignore: ['docs/**', '**.md', '**.mdx', '**.png', '**.jpg']
pull_request:
branches: [main, release-**]
paths-ignore: ['docs/**', '**.md', '**.mdx', '**.png', '**.jpg']
permissions:
contents: read
packages: write
env:
GO_VERSION: '1.20'
jobs:
unit-tests:
runs-on: ubuntu-latest
environment: unit-tests
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out the code in the Go module directory
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Run unit tests & Generate coverage
run: |
make unit-test
- name: Run inference api unit tests
run: |
make inference-api-e2e
- name: Upload Codecov report
uses: codecov/codecov-action@v4
with:
## Comma-separated list of files to upload
files: ./coverage.txt
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}