Fix #566 - time series documentation (#567) #359
This file contains hidden or 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: Test that docs are generated | |
| defaults: | |
| run: | |
| shell: bash | |
| on: | |
| push: | |
| branches: [ main, 'release_*' ] | |
| pull_request: | |
| branches: [ main, 'release_*' ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Display Go version | |
| run: go version | |
| - name: Regenerate documentation and test | |
| run: | | |
| cd tests/ci | |
| ./go-doc-generate.sh |