Skip to content

Commit

Permalink
feat: first draft at continuous integration (CI) workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TechSolomon committed Jan 24, 2024
1 parent d70648c commit 07faa21
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
# FIXME: match version format (actions/setup-go/pull/410).
go-version: '1.21.x'

- name: Install dependencies
run: go get .

# - name: Build
# run: go build -v ./...

# - name: Test
# run: go test -v ./...
# - name: Test with the Go CLI
# run: go test

0 comments on commit 07faa21

Please sign in to comment.