github.com/wbrown/gpt_bpe@v0.0.0-20250709161131-1571a6e8ad2d/.github/workflows/TestGPT_BPE.yml (about)

     1  name: Test gpt_bpe_test.go
     2  
     3  on:
     4    push:
     5      paths-ignore:
     6        - "README.md"
     7        - "LICENSE"
     8        - "cmd/**"
     9    workflow_dispatch:
    10  
    11  jobs:
    12    test:
    13      runs-on: ubuntu-latest
    14      steps:
    15        - name: Checkout
    16          uses: actions/checkout@v4
    17  
    18        - name: Set up Go
    19          uses: actions/setup-go@v5
    20          with:
    21            go-version-file: "go.mod"
    22  
    23        - name: Build
    24          run: go build -v ./
    25  
    26        - name: Test gpt_bpe
    27          uses: robherley/go-test-action@v0
    28          with:
    29            testArguments: ./ -timeout 20m