Skip to content

chore(deps): update actions/setup-go action to v5 #2

chore(deps): update actions/setup-go action to v5

chore(deps): update actions/setup-go action to v5 #2

Workflow file for this run

name: Build
on: pull_request
jobs:
quality-checks:
concurrency:
group: monorepo-plugin-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '^1.19.1'
cache: true
- name: Check quality
run: make quality
- name: Run tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3