Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rustls from 0.22.3 to 0.22.4 #16

Closed
wants to merge 10 commits into from
Closed
11 changes: 7 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ on:
pull_request:
branches:
- master
workflow_dispatch:

jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/setup-nasm@v1

- uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -25,8 +28,8 @@ jobs:
- name: Rustfmt
run: cargo fmt -- --check

- name: Build (release) (default features)
run: cargo build --target i686-pc-windows-msvc --locked --release
- name: Build (release) (all features)
run: cargo build --target i686-pc-windows-msvc --features all --locked --release

- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -69,8 +72,8 @@ jobs:
env:
BYOND_BIN: /home/runner/BYOND/byond/bin

- name: Build (release) (default features)
run: cargo build --target i686-unknown-linux-gnu --locked --release
- name: Build (release) (all features)
run: cargo build --target i686-unknown-linux-gnu --locked --features all --release

- uses: actions/upload-artifact@v4
with:
Expand Down
Loading