Skip to content

Create LICENSE

Create LICENSE #3

Workflow file for this run

name: Cargo Build & Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: splitter - latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
toolchain:
- stable
- beta
- nightly
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose