Skip to content

feat: add JamTime, TimeSlot and Epoch implementation #31

feat: add JamTime, TimeSlot and Epoch implementation

feat: add JamTime, TimeSlot and Epoch implementation #31

Workflow file for this run

name: Go CI
on:
pull_request:
env:
GO_VERSION: '1.22.5'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
unit_test:
needs: [lint]
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: execute tests
run: make test