1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-26 00:10:32 +00:00
hls_m3u8/.github/workflows/rust.yml

45 lines
1 KiB
YAML
Raw Normal View History

2020-02-24 15:46:57 +00:00
name: Rust
2019-09-21 11:10:55 +00:00
# Trigger the workflow on push or pull request
on: [push, pull_request]
jobs:
2020-02-23 17:53:47 +00:00
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
2020-03-25 13:56:46 +00:00
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
2020-02-23 17:53:47 +00:00
- uses: actions-rs/cargo@v1
2020-03-25 13:56:46 +00:00
with:
command: build
args: --all-features
2020-02-23 17:53:47 +00:00
- uses: actions-rs/cargo@v1
2020-03-25 13:56:46 +00:00
with:
command: test
args: --all-features
2020-02-23 17:53:47 +00:00
- uses: actions-rs/cargo@v1
2020-03-25 13:56:46 +00:00
with:
command: doc
args: --all-features
2020-02-23 17:53:47 +00:00
- uses: actions-rs/cargo@v1
2020-03-25 13:56:46 +00:00
with:
command: fmt
args: --all -- --check