Skip to content

Merge branch 'main' of github.com:memflow/memflowup #72

Merge branch 'main' of github.com:memflow/memflowup

Merge branch 'main' of github.com:memflow/memflowup #72

Workflow file for this run

name: Build and test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build_x86-64:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --workspace --all-features --verbose
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Run all tests
run: cargo test --workspace --verbose