-
Notifications
You must be signed in to change notification settings - Fork 26
48 lines (40 loc) · 1.52 KB
/
platform_tests.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
46
47
48
name: Platform Tests
on: [push, pull_request]
jobs:
platform_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.19.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: sudo apt-get update && sudo apt-get install golang gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
if: ${{ runner.os == 'Linux' }}
#- name: Verify go modules
# run: |
# if [ "$GO111MODULE" == "on" ]
# then
# # For some reason `git diff-index HEAD` does not work properly if the following line is missing.
# git diff
# # check that go mod tidy does not change go.mod/go.sum
# go mod tidy && git diff-index --quiet HEAD -- || ( echo "go.mod/go.sum not up-to-date"; git diff-index HEAD --; false )
# fi
- name: Tests
run: go test -tags ci ./...
- name: Update coverage
run: |
go install github.com/mattn/goveralls@latest
set -e
go test -tags ci -covermode=atomic -coverprofile=coverage.out ./...
if [ $coverage -lt 28 ]; then echo "Test coverage lowered"; exit 1; fi
if: ${{ runner.os == 'Linux' }}
- name: Update PR Coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
if: ${{ runner.os == 'Linux' && github.event_name == 'push' }}