Add an example of RFC3339 date to date.parseRFC3339
comment (#24)
#12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
- name: make test | |
run: | | |
go install github.com/google/go-jsonnet/cmd/jsonnet@latest | |
go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@latest | |
make test | |
docs: | |
name: docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
- name: make docs | |
run: | | |
go install github.com/jsonnet-libs/docsonnet@master | |
make docs | |
git diff --exit-code | |