Skip to content

refactor(ci): refactor gh action #2

refactor(ci): refactor gh action

refactor(ci): refactor gh action #2

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
go-test:
name: Go Test
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '~1.23'
- name: Running Tests
run: |
go mod tidy
make test