Skip to content

fix(ci): run releases from the manual tag workflow #3

fix(ci): run releases from the manual tag workflow

fix(ci): run releases from the manual tag workflow #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Set up Go
uses: actions/setup-go@v6.4.0
with:
go-version-file: go.mod
cache: true
- name: Run tests
run: go test ./...