Add testing
Some checks failed
Build / gobuild (push) Failing after 1m19s

This commit is contained in:
Davide Oddone 2023-12-02 12:19:16 +00:00
parent 208dc65316
commit a657dd1b6d

View File

@ -17,4 +17,11 @@ jobs:
- name: List files in the repository - name: List files in the repository
run: | run: |
ls ${{ github.workspace }} ls ${{ github.workspace }}
- name: Test with Go
run: go test -json > TestResults-${{ matrix.go-version }}.json
- name: Upload Go test results
uses: actions/upload-artifact@v3
with:
name: Go-results-${{ matrix.go-version }}
path: TestResults-${{ matrix.go-version }}.json
- run: echo "This job's status is ${{ job.status }}." - run: echo "This job's status is ${{ job.status }}."