chore: add auto remove script code to cleanup if the directory is not… #266
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test On Push | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: go mod tidy | |
- name: Run tests | |
run: CI=true go test ./... |