1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-02 08:22:01 +00:00

update ci to test code

This commit is contained in:
Lucas 2021-10-01 13:35:43 +02:00
parent 8bf28b75fa
commit f7eaeea281

View file

@ -1,10 +1,39 @@
name: rust
# Trigger the workflow on push or pull request
on: [push, pull_request] on: [push, pull_request]
name: Continuous integration
jobs: jobs:
rustfmt: check:
name: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: check
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: test
fmt:
name: rustfmt name: rustfmt
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -12,25 +41,27 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: nightly toolchain: stable
override: true override: true
components: rustfmt - run: rustup component add rustfmt
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: fmt command: fmt
args: --all -- --check args: --all -- --check
clippy: miri:
name: clippy name: miri
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1 - name: Install Miri
with: run: |
profile: minimal MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)
toolchain: nightly echo "Installing latest nightly with Miri: $MIRI_NIGHTLY"
override: true rustup set profile minimal
components: clippy rustup default "$MIRI_NIGHTLY"
- uses: actions-rs/cargo@v1 rustup component add miri
with: - uses: Swatinem/rust-cache@v1
command: clippy - name: Run Tests
run: cargo miri test