Test CI setup and cleanup old unused code #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build evil-tools | |
on: | |
pull_request: | |
paths-ignore: | |
- 'scripts/**' | |
jobs: | |
build: | |
name: Build evil-tools | |
runs-on: self-hosted | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
id: go | |
- name: Print Go version | |
run: go version | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Build evil-tools | |
run: go build -v . |