fix(deps): update github.com/cloudy-sky-software/pulschema digest to 517b6a6 #1997
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
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "CHANGELOG.md" | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "CHANGELOG.md" | |
| env: | |
| GOLANG_CI_LINT_VERSION: v1.64.8 | |
| PROVIDER: "scaleway-instances" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v6 | |
| - name: Unshallow clone for tags | |
| run: git fetch --prune --unshallow --tags | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.x | |
| - name: Lint | |
| run: | | |
| curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin $GOLANG_CI_LINT_VERSION | |
| make lint | |
| - name: Test | |
| run: make test | |
| assert-clean-tree: | |
| name: Check if working tree is clean | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v6 | |
| - run: | | |
| git config --global url."https://praneetloke:${GH_REPO_PAT}@github.com/".insteadOf "https://github.com/" | |
| env: | |
| GH_REPO_PAT: ${{ secrets.GH_REPO_PAT }} | |
| - name: Unshallow clone for tags | |
| run: git fetch --prune --unshallow --tags | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24.x | |
| - name: Setup Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22.x | |
| - name: Setup DotNet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 6.0.x | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - name: Install pulumictl | |
| uses: jaxxstorm/action-install-gh-release@v2.1.0 | |
| with: | |
| repo: pulumi/pulumictl | |
| tag: "latest" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Generate schema and build SDKs | |
| run: make gen generate_schema build | |
| - name: Check worktree clean | |
| run: | | |
| git update-index -q --refresh | |
| if ! git diff-files --quiet; then | |
| >&2 echo "error: working tree is not clean, aborting!" | |
| git status | |
| git diff | |
| exit 1 | |
| fi |