Skip to content

Commit

Permalink
Merge pull request #1 from herzrasen/github-actions
Browse files Browse the repository at this point in the history
GitHub actions
  • Loading branch information
herzrasen authored Dec 22, 2022
2 parents 46c04bf + 83c22a0 commit 8ac5939
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 10 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: actions/setup-go@v2
with:
go-version: '^1.19' # The Go version to download (if necessary) and use.

- name: Build artifact
run: make all
14 changes: 4 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test
hist

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/
# ide meta data
.idea
.vscode

0 comments on commit 8ac5939

Please sign in to comment.