Skip to content

Merge pull request #6 from ls1intum/dependabot/github_actions/actions… #27

Merge pull request #6 from ls1intum/dependabot/github_actions/actions…

Merge pull request #6 from ls1intum/dependabot/github_actions/actions… #27

Workflow file for this run

name: Go Test
permissions:
contents: read
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.24
cache-dependency-path: "**/*.sum"
- name: Install dependencies
run: go mod download
- name: Test with Go
run: go test ./... -json > TestResults.json
- name: Upload Go test results
uses: actions/upload-artifact@v4
with:
name: Go-results
path: TestResults.json