Skip to content

Commit

Permalink
Test basic CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoutsilis committed Dec 27, 2023
1 parent 91c7744 commit da233b6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21.x
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install Dependencies
run: |
go get .
- name: Build
run: go build -v ./
- name: Test
run: go test

0 comments on commit da233b6

Please sign in to comment.