Skip to content

Introduce WPDateTime and WPFutureDateTime. (#37) #73

Introduce WPDateTime and WPFutureDateTime. (#37)

Introduce WPDateTime and WPFutureDateTime. (#37) #73

Workflow file for this run

name: Test Main Branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup GO environment
uses: actions/setup-go@v5
with:
go-version: '^1.22.1'
- name: Setup environment
run: |
go mod vendor
LOG_LEVEL=debug
- name: Test local binaries
run: |
go test -v ./...
- name: Test benchmark performance
run: |
go test -bench=. ./...