-
Notifications
You must be signed in to change notification settings - Fork 14
10000
name: smbioslib_ci | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
branches: main | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build --verbose | |
- name: OS version | |
run: uname -a | |
- name: Run tests | |
run: cargo test -- --nocapture |