1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-16 12:00:33 +00:00

fix github actions syntax

This commit is contained in:
Luro02 2020-03-25 14:56:46 +01:00
parent cc48478b05
commit 24c5ad8199
No known key found for this signature in database
GPG key ID: B66FD4F74501A9CF

View file

@ -17,28 +17,28 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: ${{ matrix.rust }} toolchain: ${{ matrix.rust }}
override: true override: true
components: rustfmt, clippy components: rustfmt, clippy
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: build command: build
args: --all-features args: --all-features
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --all-features args: --all-features
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: doc command: doc
args: --all-features args: --all-features
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: fmt command: fmt
args: --all -- --check args: --all -- --check