mirror of
https://github.com/rutgersc/m3u8-rs.git
synced 2025-01-02 19:28:40 +00:00
Check cargo fmt
on CI
This commit is contained in:
parent
6ee1b52c01
commit
1287975af4
2 changed files with 10 additions and 0 deletions
5
.github/workflows/rust-windows.yml
vendored
5
.github/workflows/rust-windows.yml
vendored
|
@ -16,7 +16,12 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: cargo build --verbose
|
||||||
|
|
||||||
|
- name: Run fmt
|
||||||
|
run: cargo fmt --all -- --check
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose
|
run: cargo test --verbose
|
||||||
|
|
5
.github/workflows/rust.yml
vendored
5
.github/workflows/rust.yml
vendored
|
@ -16,7 +16,12 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: cargo build --verbose
|
||||||
|
|
||||||
|
- name: Run fmt
|
||||||
|
run: cargo fmt --all -- --check
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose
|
run: cargo test --verbose
|
||||||
|
|
Loading…
Reference in a new issue