-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (36 loc) · 991 Bytes
/
regression.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Regression Tests
# default token permissions: none
permissions: {}
on:
push:
branches:
- main
# Currently, there doesn't appear to be a simple solution for
# having required checks with ignored paths (the checks will
# never run and so PRs cannot be merged).
# paths-ignore:
# - "**/*.md"
# - "LICENSE"
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
# paths-ignore:
# - "**/*.md"
# - "LICENSE"
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Tests and coverage
run: go test -cover ./...