diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62a18de..cd48d90 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,17 +8,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 + with: + submodules: recursive - name: Install rust stable uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - - name: Checkout submodules - shell: bash - run: | - auth_header="$(git config --local --get http.https://github.com/.extraheader)" - git submodule sync --recursive - git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - name: Install bats run: git clone --depth 1 https://github.com/sstephenson/bats.git - name: Run tests