Skip to content

Commit 213e98b

Browse files
committed
ci cleanup
1 parent 3b2578d commit 213e98b

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/ci.yml

+7-10
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: CI
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [ main ]
66
pull_request:
7-
branches: [main]
7+
branches: [ main ]
88
release:
9-
types: [published]
9+
types: [ published ]
1010
workflow_dispatch:
1111

1212
defaults:
@@ -19,8 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: taiki-e/install-action@v2
22-
with:
23-
tool: just
22+
with: { tool: just }
2423
- uses: actions/checkout@v4
2524
- uses: Swatinem/rust-cache@v2
2625
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
@@ -31,8 +30,7 @@ jobs:
3130
runs-on: ubuntu-latest
3231
steps:
3332
- uses: taiki-e/install-action@v2
34-
with:
35-
tool: just
33+
with: { tool: just }
3634
- uses: actions/checkout@v4
3735
- uses: Swatinem/rust-cache@v2
3836
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
@@ -74,8 +72,7 @@ jobs:
7472
sqlite3: sqlite3
7573
steps:
7674
- uses: taiki-e/install-action@v2
77-
with:
78-
tool: just
75+
with: { tool: just }
7976
- uses: actions/checkout@v4
8077
- uses: Swatinem/rust-cache@v2
8178
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'
@@ -119,7 +116,7 @@ jobs:
119116
env:
120117
EXTENSION_FILE: target/${{ matrix.target }}/release/examples/${{ matrix.file }}
121118
SQLITE3_BIN: ${{ matrix.sqlite3 }}
122-
run: ./tests/test-ext.sh
119+
run: ./tests/test-ext.sh
123120
# - name: Test ${{ matrix.target }} extension
124121
# if: matrix.target != 'aarch64-apple-darwin'
125122
# run: just sqlite3=${{ matrix.sqlite3 }} extension_file=target/${{ matrix.target }}/release/examples/${{ matrix.file }} test-ext

0 commit comments

Comments
 (0)