Skip to content

Bump predicates from 3.1.0 to 3.1.2 #240

Bump predicates from 3.1.0 to 3.1.2

Bump predicates from 3.1.0 to 3.1.2 #240

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
Unit-Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Run Unit Tests
run: cargo test --bins
Integration-Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Run Integration Tests
run: cargo test --test integration -- --test-threads=1