10000 Test with macos latest · jrgerber/smbios-lib@345a6c6 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix macos version and add asserts to int test #41

Fix macos version and add asserts to int test

Fix macos version and add asserts to int test #41

Workflow file for this run

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
0