Compare commits

..

2 Commits

Author SHA1 Message Date
a1eab8f002 Modified 'build' action to 'run' action
Some checks failed
Build / gobuild (push) Failing after 46s
2023-12-02 12:48:30 +00:00
fb9a78c929 Removed test (useless atm) 2023-12-02 12:47:53 +00:00

View File

@ -11,17 +11,10 @@ jobs:
with: with:
go-version: '1.21.x' go-version: '1.21.x'
- name: Build - name: Build
run: go build -v ./*/*.go run: go run -v ./*/*.go
- name: Display Go version - name: Display Go version
run: go version run: go version
- 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 ./*/*.go -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 }}."