Skip to content

Commit da03e07

Browse files
committed
linting and using remote scripts rather than submodule
1 parent 2d8d179 commit da03e07

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/release.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: 🧪 Test
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- { uses: actions/checkout@v4, with: { submodules: true } }
21+
- uses: actions/checkout@v4
2222
- run: eval $(curl -sSf sh.davidalsh.com/just.sh | sh)
2323
- run: eval $(curl -sSf sh.davidalsh.com/rust.sh | sh)
2424
- run: just test
@@ -27,7 +27,7 @@ jobs:
2727
name: 📝 Format
2828
runs-on: ubuntu-24.04
2929
steps:
30-
- { uses: actions/checkout@v4, with: { submodules: true } }
30+
- uses: actions/checkout@v4
3131
- run: eval $(curl -sSf sh.davidalsh.com/just.sh | sh)
3232
- run: eval $(curl -sSf sh.davidalsh.com/rust.sh | sh)
3333
- run: just fmt
@@ -36,7 +36,7 @@ jobs:
3636
name: 🤓 Lint
3737
runs-on: ubuntu-24.04
3838
steps:
39-
- { uses: actions/checkout@v4, with: { submodules: true } }
39+
- uses: actions/checkout@v4
4040
- run: eval $(curl -sSf sh.davidalsh.com/just.sh | sh)
4141
- run: eval $(curl -sSf sh.davidalsh.com/rust.sh | sh)
4242
- run: just lint
@@ -81,9 +81,11 @@ jobs:
8181
name: ${{ matrix.config.name }}
8282
runs-on: ${{ matrix.config.runner }}
8383
steps:
84-
- { uses: actions/checkout@v4, with: { submodules: true } }
85-
- run: eval $(curl -sSf sh.davidalsh.com/just.sh | sh)
86-
- run: eval $(curl -sSf sh.davidalsh.com/rust.sh | sh)
84+
- uses: actions/checkout@v4
85+
- shell: bash
86+
run: eval $(curl -sSf sh.davidalsh.com/just.sh | sh)
87+
- shell: bash
88+
run: eval $(curl -sSf sh.davidalsh.com/rust.sh | sh)
8789
- if: matrix.config.run
8890
run: ${{ matrix.config.run }}
8991
- env:

0 commit comments

Comments
 (0)