Skip to content

chore: upgrade github action version #87

chore: upgrade github action version

chore: upgrade github action version #87

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Test
run: |
./test.sh
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
args: build --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}