Skip to content

Commit

Permalink
Chore: add basic ci
Browse files Browse the repository at this point in the history
 - runs goreleaser --snapshot ... to build the tool
  • Loading branch information
till committed Jun 28, 2020
1 parent bf94830 commit d063346
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on:
pull_request:

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
- name: Check config
uses: goreleaser/goreleaser-action@v2
with:
args: check
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: --snapshot --skip-publish --rm-dist

0 comments on commit d063346

Please sign in to comment.