Skip to content

feat: added test workflow (#11) #2

feat: added test workflow (#11)

feat: added test workflow (#11) #2

Workflow file for this run

name: test
on:
push:
branches:
- main
- master
pull_request:
permissions:
contents: read
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.22'
cache: false
- name: Run tests
run: go test -v ./...