Skip to content

Commit

Permalink
Merge pull request #114 from google/cuixq-patch-1
Browse files Browse the repository at this point in the history
ci: set up a workflow to run tests
  • Loading branch information
cuixq authored Dec 3, 2024
2 parents 66e2aed + 8890339 commit 1ee2cd4
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Go

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
go:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: stable

- name: Run tests in maven
working-directory: ./util/maven
run: go test ./...

- name: Run tests in resolve
working-directory: ./util/resolve
run: go test ./...

- name: Run tests in semver
working-directory: ./util/semver
run: go test ./...

0 comments on commit 1ee2cd4

Please sign in to comment.