Skip to content

Minimize permissions on CI workflows #139

Minimize permissions on CI workflows

Minimize permissions on CI workflows #139

Workflow file for this run

name: test
on:
pull_request:
branches: ['*']
permissions:
contents: read
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.17.x", "1.18.x"]
include:
- go: 1.18.x
latest: true
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Load cached dependencies
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Download dependencies
run: go mod download
- name: Lint
if: matrix.latest
run: make lint
- name: Test
run: make test
- name: Make coverage
if: matrix.latest
run: make cover
- name: Upload coverage to codecov.io
if: matrix.latest
uses: codecov/codecov-action@v1
# TODO decide whether we want to benchmark on every run.
# name: Benchmark
# run: make bench