mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2024-11-22 17:01:00 +00:00
27 lines
386 B
YAML
27 lines
386 B
YAML
name: Rust Windows
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
|
|
- name: Run fmt
|
|
run: cargo fmt --all -- --check
|
|
|
|
- name: Run tests
|
|
run: cargo test --verbose
|