Skip to content

Commit 62cbe08

Browse files
authored
Merge pull request #43 from movementlabsxyz/l-monninger/movement-mainnet-checks
Movement Mainnet Checks
2 parents b58c865 + edb8c20 commit 62cbe08

File tree

26 files changed

+770
-43
lines changed

26 files changed

+770
-43
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,5 @@ rustflags = [
9696

9797
[http]
9898
check-revoke = false
99+
100+
[env]

.github/workflows/nix-command.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,23 @@ on:
1919

2020
jobs:
2121
run-command:
22-
runs-on: macos-latest
22+
runs-on: buildjet-16vcpu-ubuntu-2204
2323
steps:
24+
- name: Free Disk Space (Ubuntu)
25+
uses: jlumbroso/free-disk-space@main
26+
with:
27+
tool-cache: true
28+
2429
- uses: actions/checkout@v4
25-
30+
2631
- name: Install Nix
2732
uses: DeterminateSystems/nix-installer-action@main
28-
33+
2934
- name: Enable Nix Flakes
3035
run: |
3136
mkdir -p ~/.config/nix
3237
echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf
33-
38+
3439
- name: Run Command in Nix Shell
3540
run: |
3641
echo "Running command: ${{ inputs.command }}"

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# cargo checks and tests
1313
- cargo check --all-targets
1414
- cargo test
15-
15+
1616
with:
1717
command: ${{ matrix.command }}
1818
nix_flake_path: '.'

0 commit comments

Comments
 (0)