Skip to content

πŸ’š Added a unit testing runner #2

πŸ’š Added a unit testing runner

πŸ’š Added a unit testing runner #2

Workflow file for this run

name: Unit Testing
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Run Go tests
run: go test ./...