From 75bbe34a24b1a1699a7db6cf3653403454e6a939 Mon Sep 17 00:00:00 2001 From: Thor Seldon Date: Wed, 26 Apr 2023 14:55:54 +0800 Subject: [PATCH] fix: Add git submodule cli in workflow --- .github/workflows/checks.yaml | 2 ++ .github/workflows/tests.yaml | 2 ++ .gitignore | 3 +-- lib/forge-std | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) create mode 160000 lib/forge-std diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 9fab570..fe208bb 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -14,6 +14,8 @@ jobs: with: persist-credentials: false submodules: recursive + - name: Checkout submodules + run: git submodule update --init --recursive --remote - name: Reconfigure git to use HTTP authentication run: > git config --global url."https://github.com/".insteadOf diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 877773d..a2743ff 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -14,6 +14,8 @@ jobs: with: persist-credentials: false submodules: recursive + - name: Checkout submodules + run: git submodule update --init --recursive --remote - name: Reconfigure git to use HTTP authentication run: > git config --global url."https://github.com/".insteadOf diff --git a/.gitignore b/.gitignore index e0dbb8d..8694322 100644 --- a/.gitignore +++ b/.gitignore @@ -121,8 +121,7 @@ abis/ cache_forge out -# Others -lib +# Others files storage_layout out.html diff --git a/lib/forge-std b/lib/forge-std new file mode 160000 index 0000000..9fec3a4 --- /dev/null +++ b/lib/forge-std @@ -0,0 +1 @@ +Subproject commit 9fec3a49630d8086cac96ea8ff3a2137a23f96ed