Skip to content

Commit

Permalink
Add CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
csfrancis committed Sep 24, 2024
1 parent 14f78ca commit 047abcc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Continuous Integration

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Install dependencies
run: make setup

- name: Run tests
run: make test
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"-tags=debug",
],

}
},
"makefile.configureOnOpen": false
}

0 comments on commit 047abcc

Please sign in to comment.