Merge pull request #4 from Marcusk19/add_status_check

add ci workflow
pull/6/head
Marcus Kok 2 years ago committed by GitHub
commit e2b88f11d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,19 @@
name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.22.x'
- name: Install dependencies
run: go get.
- name: Test with Go CLI
run: go test ./test
Loading…
Cancel
Save