Skip to content

(add) ci workflow for running unit tests with any trigger in main #1

(add) ci workflow for running unit tests with any trigger in main

(add) ci workflow for running unit tests with any trigger in main #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test ./...