github.com/wbrown/gpt_bpe@v0.0.0-20250709161131-1571a6e8ad2d/.github/workflows/TestCommands.yml (about) 1 name: Test Commands 2 3 on: 4 push: 5 paths-ignore: 6 - "README.md" 7 - "LICENSE" 8 workflow_dispatch: 9 10 jobs: 11 test: 12 runs-on: ubuntu-latest 13 steps: 14 - name: Checkout 15 uses: actions/checkout@v4 16 17 - name: Set up Go 18 uses: actions/setup-go@v5 19 with: 20 go-version-file: "go.mod" 21 22 - name: Build 23 run: go build -v ./ 24 25 - name: Test dataset_tokenizer 26 uses: robherley/go-test-action@v0 27 with: 28 testArguments: ./ 29 moduleDirectory: ./cmd/dataset_tokenizer