Skip to content

Add simple "go test" rule to repository #2

Add simple "go test" rule to repository

Add simple "go test" rule to repository #2

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
tags: [ v* ]
pull_request:
branches: [ master ]
env:
GO_VERSION: ^1.19
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v4
- run: go test ./...