chore: fix dependency resolution because of dep:
syntax in serde
…
#72
This file contains 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: CosmWasm Compilation Check | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/cw-check.yml | |
- ci/cw-check/** | |
push: | |
tags: | |
- v[0-9]+.* | |
branches: | |
- 'release/*' | |
- main | |
paths: | |
- .github/workflows/cw-check.yml | |
- Cargo.toml | |
- Cargo.lock | |
- ci/cw-check/** | |
- ci/** | |
- ibc/** | |
- ibc-core/** | |
- ibc-apps/** | |
- ibc-data-types/** | |
- ibc-clients/** | |
- ibc-primitives/** | |
- ibc-query/** | |
- ibc-derive/** | |
jobs: | |
cw-check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- name: Run cw-check | |
run: | | |
cd ci/cw-check | |
nix-shell --run "cw-check" |