Skip to content

patch: update actions version #77

patch: update actions version

patch: update actions version #77

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -C cmd/goignore -v ./...
- name: Test
run: go test -C cmd/goignore -v ./...
- name: Build and Archive
run: make all archive
- name: Upload Archives
uses: actions/upload-artifact@v2
with:
name: goignore-executables
path: _build/*/*.*