Skip to content

Quickfix for the network tests to use the correct format for the published script addresses #186

Quickfix for the network tests to use the correct format for the published script addresses

Quickfix for the network tests to use the correct format for the published script addresses #186

Workflow file for this run

name: Check code weeds
on:
# We're using merge-chains; so this needs to run then.
merge_group:
pull_request:
jobs:
weeder:
name: Check code weeds
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
- name: ❄ Prepare nix
uses: cachix/install-nix-action@v30
with:
extra_nix_config: |
accept-flake-config = true
log-lines = 1000
- name: ❄ Cachix cache of nix derivations
uses: cachix/cachix-action@v15
with:
name: cardano-scaling
authToken: '${{ secrets.CACHIX_CARDANO_SCALING_AUTH_TOKEN }}'
- name: 📐 Check weeder
run: |
nix develop --command -- bash -c "cabal update"
nix develop --command -- bash -c "cabal build all"
nix develop --command -- bash -c "weeder --require-hs-files"