Skip to content

Bump tfconfig from 0.2.0 to 0.2.1 #62

Bump tfconfig from 0.2.0 to 0.2.1

Bump tfconfig from 0.2.0 to 0.2.1 #62

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build-linux:
name: Test (Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-macos:
name: Test (macOS)
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-windows:
name: Test (Windows)
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose