Skip to content

Merge pull request #18 from BadKid90s/path_matcher #46

Merge pull request #18 from BadKid90s/path_matcher

Merge pull request #18 from BadKid90s/path_matcher #46

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 Build
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Example-Module
run: |
cd ./example
go fmt ./...
go build ./...
go test ./...
- name: Knife-Module
run: |
cd ./knife
go fmt ./...
go build ./...
go test ./...