Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SpyMachine committed Feb 9, 2024
1 parent 0d964bf commit f819dc6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Continous Integration

on:
pull_request:
workflow_dispatch:

jobs:
unit_test:
strategy:
matrix:
os:
- ubuntu-latest
name: ci - ${{matrix.os}}
runs-on: ${{matrix.os}}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Build
run: go build
- name: Test
run: go test

0 comments on commit f819dc6

Please sign in to comment.