docs: Update rust_build_test.yml

This commit is contained in:
Ahmet Kaan GÜMÜŞ 2023-10-14 12:56:56 +03:00 committed by GitHub
parent e6a9c512f5
commit fb0405f88a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ env:
CARGO_TERM_COLOR: always
jobs:
build:
build_linux:
runs-on: ubuntu-latest
@ -20,3 +20,25 @@ jobs:
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose