1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-23 18:58:19 +00:00
hls_m3u8/.github/workflows/rust.yml
Workflow config file is invalid. Please check your config file: yaml: line 20: mapping values are not allowed in this context
2020-02-23 18:53:47 +01:00

45 lines
1.1 KiB
YAML

name: rust
# Trigger the workflow on push or pull request
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
- uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- uses: actions-rs/cargo@v1
with:
command: doc
args: --all-features
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check