Skip to content

Commit

Permalink
ci: Run builds across the beta channel as well (#362)
Browse files Browse the repository at this point in the history
as this might help detecting upcoming rust issues earlier next time.
  • Loading branch information
AiyionPrime authored Jul 23, 2024
1 parent c591be2 commit 1bda5d0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,16 @@ env:

jobs:
build-linux:
strategy:
matrix:
toolchain:
- stable
- beta
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Provision toolchain
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build --features test-vendored-openssl
- name: Run tests
Expand All @@ -24,11 +31,18 @@ jobs:
sh ./run.sh
build-windows:
strategy:
matrix:
toolchain:
- stable
- beta
runs-on: windows-latest
env:
VCPKGRS_DYNAMIC: 1
steps:
- uses: actions/checkout@v4
- name: Provision toolchain
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Build
run: cargo build --features test-vendored-openssl
- name: Run tests
Expand Down

0 comments on commit 1bda5d0

Please sign in to comment.