Skip to content

chore: update GHA and Dependabot config #48

chore: update GHA and Dependabot config

chore: update GHA and Dependabot config #48

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
# NOTE: Default option does not include `-o pipefail` as documented
# unless explicitly specifying the `bash` shell.
# https://github.com/actions/runner/issues/353
shell: bash
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 3
strategy:
matrix:
os:
# NOTE: Non-linux systems uses more billable minutes.
# Enable them only if they are strictly required.
# - windows-latest
# - macos-latest
- ubuntu-latest
go:
- 1.16
- 1.17
steps:
- name: Checkout branch
uses: actions/checkout@v4.1.7
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5.0.2
with:
go-version: ${{ matrix.go }}
- name: Lint code
run: |
make lint
- name: Validate code
run: |
make check
- name: Run tests
run: |
make test