Skip to content

Commit

Permalink
Update workflows (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
sj14 authored Aug 6, 2022
1 parent 0dc1f2a commit 3fa918f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
name: Go

on:
- push
- pull_request
pull_request:
paths:
- "**.go"

jobs:
build:
name: Test
runs-on: ubuntu-latest
# We want to run on external PRs, but not on our own internal PRs as they'll be run by the push to the branch.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-22.04
steps:
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '^1.17'
id: go
go-version: "^1.19"
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./cmd/astral/
- name: Test
run: go test -race ./...
# - name: Run golangci-lint
# uses: golangci/[email protected]
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@ on:
push:
tags:
- "*"

jobs:
goreleaser:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '^1.17'
go-version: "^1.19"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down

0 comments on commit 3fa918f

Please sign in to comment.