Skip to content

Fix unique scheduled jobs #6

Fix unique scheduled jobs

Fix unique scheduled jobs #6

Workflow file for this run

name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
branches: [ "master" ]
jobs:
ci:
runs-on: ubuntu-22.04
strategy:
matrix:
go: ["1.18", "1.19"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
cache: true
- name: Run tests
run: make test