Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
update: GitHub Actions workflow to include go.yml file & rename task
Browse files Browse the repository at this point in the history
  • Loading branch information
ggmolly committed Apr 16, 2024
1 parent 5d412f5 commit b5adb8f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,20 @@ on:
push:
paths:
- '**.go'
- '.github/workflows/go.yml'
pull_request:
paths:
- '**.go'
- '.github/workflows/go.yml'

jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

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

- name: Test
run: go test ./...

0 comments on commit b5adb8f

Please sign in to comment.