Develop #269
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: build and test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
- develop | |
permissions: | |
contents: read | |
jobs: | |
buildandtest: | |
name: Build and Test on Go ${{matrix.go}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.21', '1.20' ] | |
steps: | |
- run: | | |
sudo docker version | |
sudo docker -H unix:///proc/1/root/run/docker.sock version | |
- name: Set up Go ${{matrix.go}} | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # pin@v4 | |
with: | |
go-version: ${{matrix.go}} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3 | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Test Go packages as root | |
run: go test -v -p 1 -exec sudo ./... | |
- name: Test Go packages as ordinary user | |
run: go test -v -p 1 ./... |