@@ -2,20 +2,20 @@ name: Test Build Workflow
22
33on :
44 schedule :
5- - cron : ' 0 4 * * *' # Run daily at 4am
5+ - cron : " 0 4 * * *" # Run daily at 4am
66 workflow_dispatch :
77 push :
88 tags :
9- - ' v1 '
10- - ' v1-test'
9+ - " v1 "
10+ - " v1-test"
1111 paths :
12- - ' action.yml'
13- - ' .github/workflows/test-build-workflow.yml'
12+ - " action.yml"
13+ - " .github/workflows/test-build-workflow.yml"
1414 pull_request :
15- branches : [ master ]
15+ branches : [master]
1616 paths :
17- - ' action.yml'
18- - ' .github/workflows/test-build-workflow.yml'
17+ - " action.yml"
18+ - " .github/workflows/test-build-workflow.yml"
1919
2020jobs :
2121 test-coverage-build :
@@ -44,20 +44,20 @@ jobs:
4444 # - os: windows-latest
4545 # target: aarch64-pc-windows-msvc
4646 # use-cross: false
47- - os : macos-13 # Intel
47+ - os : macos-15-intel # Intel
4848 target : x86_64-apple-darwin
4949 use-cross : false
50- - os : macos-14 # M1/M2 (aarch64)
50+ - os : macos-latest # M1/M2 (aarch64)
5151 target : aarch64-apple-darwin
5252 use-cross : false
5353 - os : ubuntu-latest
5454 target : x86_64-pc-windows-gnu
5555 use-cross : true
56- label : ' [Wine] x86_64-pc-windows-gnu'
56+ label : " [Wine] x86_64-pc-windows-gnu"
5757 - os : ubuntu-latest
5858 target : i686-pc-windows-gnu
5959 use-cross : true
60- label : ' [Wine] i686-pc-windows-gnu'
60+ label : " [Wine] i686-pc-windows-gnu"
6161 runs-on : ${{ matrix.os }}
6262 steps :
6363 - name : Checkout Test Repository
7171 rust-toolchain : stable
7272 target : ${{ matrix.target }}
7373 use-cross : ${{ matrix.use-cross }}
74- features : ' c-exports,std'
74+ features : " c-exports,std"
7575 no-default-features : true
7676 codecov-token : ${{ secrets.CODECOV_TOKEN }}
7777
8888 with :
8989 rust-toolchain : nightly
9090 target : x86_64-unknown-linux-gnu
91- features : ' c-exports,std'
91+ features : " c-exports,std"
9292 no-default-features : true
9393 codecov-token : ${{ secrets.CODECOV_TOKEN }}
9494
@@ -105,7 +105,7 @@ jobs:
105105 with :
106106 rust-toolchain : beta
107107 target : x86_64-unknown-linux-gnu
108- features : ' c-exports,std'
108+ features : " c-exports,std"
109109 no-default-features : true
110110 codecov-token : ${{ secrets.CODECOV_TOKEN }}
111111
@@ -122,7 +122,7 @@ jobs:
122122 with :
123123 rust-toolchain : nightly-2025-09-18
124124 target : x86_64-unknown-linux-gnu
125- features : ' c-exports,std'
125+ features : " c-exports,std"
126126 no-default-features : true
127127 codecov-token : ${{ secrets.CODECOV_TOKEN }}
128128
@@ -139,7 +139,7 @@ jobs:
139139 with :
140140 rust-toolchain : 1.90.0
141141 target : x86_64-unknown-linux-gnu
142- features : ' c-exports,std'
142+ features : " c-exports,std"
143143 no-default-features : true
144144 codecov-token : ${{ secrets.CODECOV_TOKEN }}
145145
@@ -153,7 +153,7 @@ jobs:
153153 - os : windows-latest
154154 rust-toolchain : stable
155155 target : x86_64-pc-windows-msvc
156- - os : macos-13 # Intel
156+ - os : macos-15-intel # Intel
157157 rust-toolchain : stable
158158 target : x86_64-apple-darwin
159159 runs-on : ${{ matrix.os }}
@@ -202,4 +202,4 @@ jobs:
202202 uses : Reloaded-Project/devops-rust-test-and-coverage@v1-test
203203 with :
204204 upload-coverage : false
205- codecov-token : ${{ secrets.CODECOV_TOKEN }}
205+ codecov-token : ${{ secrets.CODECOV_TOKEN }}
0 commit comments