Skip to content

Torrent update

Torrent update #109

name: cargo build and cargo test
on:
pull_request:
branches: [ "*" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --all --verbose