Skip to content

Commit 8f03f02

Browse files
committed
ci: Add release build jobs
1 parent 4c909f1 commit 8f03f02

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,26 @@ jobs:
6767
run: tests/run_all.sh
6868
shell: bash
6969

70+
release-build:
71+
name: Release Build (${{ matrix.os }})
72+
runs-on: ${{ matrix.os }}
73+
strategy:
74+
fail-fast: false
75+
matrix:
76+
os:
77+
- ubuntu-latest
78+
- windows-latest
79+
- macos-latest
80+
steps:
81+
- uses: actions/checkout@v6
82+
with:
83+
submodules: recursive
84+
- uses: dtolnay/rust-toolchain@stable
85+
with:
86+
toolchain: stable
87+
- name: Build (release)
88+
run: cargo build --release --all-features
89+
7090
clippy_check:
7191
name: Clippy
7292
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)