Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Apr 5, 2023
1 parent b73f6cb commit 3adc07c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,20 @@ jobs:
with:
nix_path: nixpkgs=channel:nixpkgs-unstable

- name: Workaround for disk space issue
run: rm -rf /opt/hostedtoolcache/CodeQL || true; df -ah; sudo du -sh /*||true;

- name: Fetch Deps
run: nix-shell --run 'go get -t ./... && go mod tidy'
run: nix-shell --run 'pwd; go get -t ./... && go mod tidy'

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Generate all files
run: nix-shell --run 'make -j1 gen'
run: nix-shell --run 'pwd; make -j1 gen'

- name: Run all the tests
run: nix-shell --run 'make ci'
run: nix-shell --run 'pwd; make ci'

- name: upload codecov
run: bash <(curl -s https://codecov.io/bash)
Expand Down

0 comments on commit 3adc07c

Please sign in to comment.