11name : Run CI
22on :
33 push :
4- branches : [ main, ' feat/**' ]
4+ branches : [main, " feat/**" ]
55 paths-ignore :
6- - ' **.md' # Do not need to run CI for markdown changes.
6+ - " **.md" # Do not need to run CI for markdown changes.
77 pull_request :
8- branches : [ main, ' feat/**' ]
8+ branches : [main, " feat/**" ]
99 paths-ignore :
10- - ' **.md'
10+ - " **.md"
1111
1212jobs :
1313 ci-build :
@@ -20,21 +20,21 @@ jobs:
2020
2121 - name : Setup rust tooling
2222 run : |
23- rustup override set 1.82
23+ rustup override set 1.83
2424 rustup component add rustfmt clippy
2525
2626 - uses : ./.github/actions/ci
2727
28- - name : ' Run contract tests with hyper_rustls'
28+ - name : " Run contract tests with hyper_rustls"
2929 uses : ./.github/actions/contract-tests
3030 with :
31- tls_feature : ' rustls'
31+ tls_feature : " rustls"
3232 token : ${{ secrets.GITHUB_TOKEN }}
3333
34- - name : ' Run contract tests with hyper_tls'
34+ - name : " Run contract tests with hyper_tls"
3535 uses : ./.github/actions/contract-tests
3636 with :
37- tls_feature : ' tls'
37+ tls_feature : " tls"
3838 token : ${{ secrets.GITHUB_TOKEN }}
3939
4040 - uses : ./.github/actions/build-docs
4949
5050 - name : Setup rust tooling
5151 run : |
52- rustup override set 1.82
52+ rustup override set 1.83
5353 rustup component add rustfmt clippy
5454 rustup target add x86_64-unknown-linux-musl
5555
0 commit comments