[MS-OAPXBC] Session key derivation #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Rust Test" | |
# Trigger the workflow on push to master or pull request | |
"on": | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
rust_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
- name: Cargo test | |
run: cargo test | |