Bump tj-actions/changed-files from 44 to 45 #3
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: Tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled] | |
merge_group: | |
types: [checks_requested] | |
concurrency: | |
group: ci-${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.go | |
FILES: | | |
go.mod | |
go.sum | |
- name: Compile | |
if: env.GIT_DIFF | |
run: | | |
go mod download | |
make build | |
test-unit-cover: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.go | |
FILES: | | |
go.mod | |
go.sum | |
- uses: actions/setup-go@v5 | |
if: env.GIT_DIFF | |
with: | |
go-version: "1.22" | |
cache: true | |
- name: Test and Create Coverage Report | |
if: env.GIT_DIFF | |
run: | | |
EXPERIMENTAL=true make test-unit-cover | |
- uses: codecov/[email protected] | |
if: env.GIT_DIFF | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.txt | |
fail_ci_if_error: true | |
verbose: true | |
test-e2e: | |
# skip the e2e tests when `skip-e2e-test` label is present on pull request | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-e2e-test') }} | |
runs-on: ubuntu-latest | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.go | |
FILES: | | |
go.mod | |
go.sum | |
- uses: actions/setup-go@v5 | |
if: env.GIT_DIFF | |
with: | |
go-version: "1.22" | |
cache: true | |
- name: Test E2E | |
if: env.GIT_DIFF | |
run: | | |
make test-e2e |