1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-01 19:31:18 +00:00
hls_m3u8/.github/workflows/rust.yml

37 lines
949 B
YAML
Raw Normal View History

2020-03-29 09:33:16 +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-03-29 09:33:16 +00:00
rustfmt:
name: rustfmt
2020-02-23 17:53:47 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
2020-03-25 13:56:46 +00:00
with:
profile: minimal
2020-03-29 09:33:16 +00:00
toolchain: nightly
2020-03-25 13:56:46 +00:00
override: true
2020-03-29 09:33:16 +00:00
components: rustfmt
2020-02-23 17:53:47 +00:00
- uses: actions-rs/cargo@v1
2020-03-25 13:56:46 +00:00
with:
2020-03-29 09:33:16 +00:00
command: fmt
args: --all -- --check
2020-02-23 17:53:47 +00:00
2020-03-29 09:33:16 +00:00
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
2020-03-25 13:56:46 +00:00
with:
2020-03-29 09:33:16 +00:00
profile: minimal
toolchain: nightly
override: true
components: clippy
2020-02-23 17:53:47 +00:00
- uses: actions-rs/cargo@v1
2020-03-25 13:56:46 +00:00
with:
2020-03-29 09:33:16 +00:00
command: clippy