Skip to content

Commit 36bbd66

Browse files
committed
CI: enable rustfmt, use ubuntu-20.04, increase timeout
1 parent dbb2059 commit 36bbd66

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/minimal-ci.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ defaults:
3838
# cancel-in-progress: true
3939

4040
jobs:
41-
# rustfmt:
42-
# runs-on: ubuntu-latest
43-
# steps:
44-
# - uses: actions/checkout@v3
45-
# - name: "Install Rust"
46-
# uses: ./.github/composite/rust
47-
# with:
48-
# rust: stable
49-
# components: rustfmt
50-
# - name: "Check rustfmt"
51-
# run: cargo fmt --all -- --check
41+
rustfmt:
42+
runs-on: ubuntu-20.04
43+
steps:
44+
- uses: actions/checkout@v3
45+
- name: "Install Rust"
46+
uses: ./.github/composite/rust
47+
with:
48+
rust: stable
49+
components: rustfmt
50+
- name: "Check rustfmt"
51+
run: cargo fmt --all -- --check
5252

5353
unit-test:
5454
name: test (${{ matrix.name }})
@@ -106,7 +106,7 @@ jobs:
106106
name: itest-godot (${{ matrix.name }})
107107
runs-on: ${{ matrix.os }}
108108
continue-on-error: false
109-
timeout-minutes: 15
109+
timeout-minutes: 24
110110
strategy:
111111
fail-fast: false # cancel all jobs as soon as one fails?
112112
matrix:
@@ -142,7 +142,7 @@ jobs:
142142
#godot_ver: ${{ matrix.godot }}
143143

144144
license-guard:
145-
runs-on: ubuntu-latest
145+
runs-on: ubuntu-20.04
146146
if: github.ref != 'refs/heads/master'
147147
steps:
148148
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)