Skip to content

ci(tests): add workflow for executing tests #1

ci(tests): add workflow for executing tests

ci(tests): add workflow for executing tests #1

Workflow file for this run

name: Test
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21.0'
check-latest: true
- name: Run tests
run: go test ./...