mirror of
https://github.com/github/awesome-copilot.git
synced 2026-08-23 17:36:52 +00:00
22 lines
398 B
YAML
22 lines
398 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [$default-branch]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go-version: ['1.25', '1.26']
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- run: go build ./...
|
|
- run: go vet ./...
|
|
- run: go test ./...
|