Skip to content

feat: allow syncing work log timestamps (#32) #21

feat: allow syncing work log timestamps (#32)

feat: allow syncing work log timestamps (#32) #21

Workflow file for this run

name: test
on:
push:
branches: ["main"]
pull_request:
paths:
- "go.*"
- "**/*.go"
- ".github/workflows/*.yml"
env:
GO_VERSION: '1.23.4'
jobs:
test:
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: Run tests
run: go test ./... -v
live:
needs: [test]
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Install
run: go install .
- name: Run live tests
run: |
cd tests
./test.sh