Skip to content

refactor(ci): Simplify CI workflow by removing unit-test job #1

refactor(ci): Simplify CI workflow by removing unit-test job

refactor(ci): Simplify CI workflow by removing unit-test job #1

Workflow file for this run

name: Unit Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
unit-test:
env:
SKIP_TESTS: true
runs-on: ubuntu-latest
env:

Check failure on line 14 in .github/workflows/unit-test.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/unit-test.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
SKIP_TESTS: true
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: test
run: make test