Skip to content

Commit

Permalink
ci: format for better readability
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Jan 25, 2024
1 parent e5db957 commit 36ecf31
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cluster_recreate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ jobs:
with:
creds: ${{ secrets.NUNKI_CI_INFRA_AZURE }}
- name: Cleanup .azure dir
run: rm $HOME/.azure/{commandIndex.json,versionCheck.json}
run: |
rm $HOME/.azure/{commandIndex.json,versionCheck.json}
- name: Destroy existing CI cluster
continue-on-error: true
run: nix run .#destroy-coco-aks -- --name="$azure_resource_group"
run: |
nix run .#destroy-coco-aks -- --name="$azure_resource_group"
- name: Create CI cluster
run: nix run .#create-coco-aks -- --name="$azure_resource_group"
run: |
nix run .#create-coco-aks -- --name="$azure_resource_group"
12 changes: 8 additions & 4 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
name: edgelesssys
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: nix flake check
run: nix -L flake check
run: |
nix -L flake check
go-source:
runs-on: ubuntu-22.04
Expand All @@ -37,7 +38,8 @@ jobs:
name: edgelesssys
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Run code generations & tidying
run: nix run .#generate
run: |
nix run .#generate
- name: Check for modifications, commit changes on renovate PRs
uses: ./.github/actions/pushdiff
with:
Expand All @@ -57,7 +59,8 @@ jobs:
name: edgelesssys
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Run govulncheck
run: nix run .#govulncheck -- ./...
run: |
nix run .#govulncheck -- ./...
golangci-lint:
runs-on: ubuntu-22.04
Expand All @@ -71,4 +74,5 @@ jobs:
name: edgelesssys
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Run golangci-lint
run: nix run .#golangci-lint -- run
run: |
nix run .#golangci-lint -- run

0 comments on commit 36ecf31

Please sign in to comment.