Skip to content

Commit

Permalink
Add rudimentary CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aschepis committed Mar 27, 2024
1 parent c40a6aa commit 9d9817f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This workflow will build and test the Chronosphere provider
name: Go

on:
push:
branches: main
pull_request: # don't include branches so that all PRs run.

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

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"

- name: Build
run: make build

- name: Test
run: make test

- name: Lint
run: make lint

0 comments on commit 9d9817f

Please sign in to comment.