Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

CI

CI #717

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'README.md'
# nightly
schedule:
- cron: '0 0 * * *'
env:
SETUP_GO_VERSION: '1.18'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.SETUP_GO_VERSION }}
- name: Lint
run: cd src/jetstream && go vet ./...
- name: Unit Tests
run: cd src/jetstream && go test -v ./...