Skip to content

Commit eec4436

Browse files
committed
ci: refresh workflows
1 parent 71934af commit eec4436

File tree

5 files changed

+26
-8
lines changed

5 files changed

+26
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v[0-9]+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v[0-9]+.[0-9]+'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always
@@ -67,4 +67,4 @@ jobs:
6767
with:
6868
toolchain: ${{matrix.toolchain}}
6969
- name: Toolchain ${{matrix.toolchain}}
70-
run: cargo +${{matrix.toolchain}} check --workspace --all-targets --all-features
70+
run: cargo +${{matrix.toolchain}} check --workspace --all-features

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v[0-9]+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v[0-9]+.[0-9]+'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

.github/workflows/lint.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
- develop
8-
- 'v[0-9]+.[0-9]+'
8+
- 'v[0-9]+.?*'
99

1010
env:
1111
CARGO_TERM_COLOR: always
@@ -38,3 +38,8 @@ jobs:
3838
components: rust-docs
3939
- name: Formatting
4040
run: cargo +nightly doc --workspace --all-features
41+
typos:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v4
45+
- uses: crate-ci/typos@master

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v[0-9]+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v[0-9]+.[0-9]+'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

_typos.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[files]
2+
# exclude the directory "stl/"
3+
extend-exclude = ["stl/"]
4+
5+
[default.extend-words]
6+
# Don't correct the name "Jon Atack".
7+
Atack = "Atack"
8+
9+
[default]
10+
extend-ignore-re = [
11+
# Don't correct URIs
12+
"([a-z]+:)*[.~0-9A-Za-z-]+",
13+
]

0 commit comments

Comments
 (0)