Skip to content

Merge pull request #42 from ComplianceAsCode/dependabot/go_modules/gi… #90

Merge pull request #42 from ComplianceAsCode/dependabot/go_modules/gi…

Merge pull request #42 from ComplianceAsCode/dependabot/go_modules/gi… #90

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-ci-${{ github.event.number || github.run_id }}
cancel-in-progress: true
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 'stable'
- 'oldstable'
container: quay.io/projectquay/golang:1.23
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...