Skip to content

fix: update github workflow to run all tests instead of just web tests #6

fix: update github workflow to run all tests instead of just web tests

fix: update github workflow to run all tests instead of just web tests #6

Workflow file for this run

name: Run tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.5"
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test ./...