
All checks were successful
/ test (push) Successful in 1m3s
Accidentally called the test workflow "build" instead of "test" woops
16 lines
No EOL
420 B
YAML
16 lines
No EOL
420 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
# Step 1: Check out the code
|
|
- uses: actions/checkout@v3
|
|
|
|
# Step 2: Set up go environment
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: '/workspace/FLUX/GoSBHPF/go.mod'
|
|
|
|
# Step 3: Set the working directory and run the project tests
|
|
- run: go test
|
|
working-directory: /workspace/FLUX/GoSBHPF/SBHPFv1 |