-
Notifications
You must be signed in to change notification settings - Fork 8
46 lines (44 loc) · 1.1 KB
/
main_linux.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
40
41
42
43
44
45
# Reference from:
# https://github.com/c-bata/go-prompt/blob/master/.github/workflows/test.yml
name: build-and-test-linux with coverage
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: [ '1.20', '1.21', '1.22', '1.23' ]
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go version
- run: go env
- run: go test ./...
- run: go build
- name: Run go tests with coverage
env:
GO111MODULE: on
run: make cover
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
- name: Set up python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: test preprocess
run: cd scripts/preprocess && make test