Fix/min size #276
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: Platform Tests | |
on: [push, pull_request] | |
jobs: | |
platform_tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.17.x, 1.20.x] | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: WillAbides/[email protected] | |
id: setup-go-faster | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Get dependencies | |
run: sudo apt-get update && sudo apt-get install 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: | | |
GO111MODULE=off go get github.com/mattn/goveralls | |
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 | |
env: | |
GOROOT: ${{steps.setup-go-faster.outputs.GOROOT}} | |
with: | |
path-to-profile: coverage.out | |
if: ${{ runner.os == 'Linux' && github.event_name == 'push' }} |