fix(simplecue): resolve CUE definition references in string constraints #3192
Workflow file for this run
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: CI | |
| on: | |
| pull_request: ~ | |
| push: | |
| branches: [main] # so that we build a Go cache that can be re-used in PRs | |
| env: | |
| DEVBOX_VERSION: 0.14.0 | |
| jobs: | |
| linters: | |
| name: Linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Restore go vendors | |
| uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 | |
| with: | |
| path: | | |
| ~/go/pkg/mod | |
| ~/.cache/go-build | |
| key: go-deps-${{ runner.os }}-${{ hashFiles('go.sum') }} | |
| restore-keys: | | |
| go-deps-${{ runner.os }} | |
| - name: Install devbox | |
| uses: jetify-com/devbox-install-action@8c6a66ed6273138b1915457069de78cb52fe3bd7 # v0.15.0 | |
| with: | |
| enable-cache: "true" | |
| devbox-version: ${{ env.DEVBOX_VERSION }} | |
| - name: Run golangci-lint | |
| run: make lint | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Restore go vendors | |
| uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # 5.0.4 | |
| with: | |
| path: | | |
| ~/go/pkg/mod | |
| ~/.cache/go-build | |
| key: go-deps-${{ runner.os }}-${{ hashFiles('go.sum') }} | |
| restore-keys: | | |
| go-deps-${{ runner.os }} | |
| - name: Install devbox | |
| uses: jetify-com/devbox-install-action@8c6a66ed6273138b1915457069de78cb52fe3bd7 # v0.15.0 | |
| with: | |
| enable-cache: "true" | |
| devbox-version: ${{ env.DEVBOX_VERSION }} | |
| - name: Tests | |
| run: make tests | |
| docs: | |
| name: Generate docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Install devbox | |
| uses: jetify-com/devbox-install-action@8c6a66ed6273138b1915457069de78cb52fe3bd7 # v0.15.0 | |
| with: | |
| enable-cache: "true" | |
| devbox-version: ${{ env.DEVBOX_VERSION }} | |
| - name: Docs | |
| run: make docs |