Merge branch 'ffplayout:master' into master

This commit is contained in:
jb-alvarado 2022-05-24 10:19:59 +02:00 committed by GitHub
commit c2bdd7d30e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 7 deletions

1
.github/FUNDING.yml vendored
View File

@ -1,3 +1,4 @@
# These are supported funding model platforms # These are supported funding model platforms
github: [jb-alvarado] github: [jb-alvarado]
open_collective: jonbae

View File

@ -2,11 +2,11 @@ name: rust
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
build: build:
# strategy: strategy:
# matrix: matrix:
# os: [ubuntu-latest, macOS-latest, windows-latest] os: [ubuntu-latest, macOS-latest, windows-latest]
# runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: rustup update stable - run: rustup update stable
@ -14,8 +14,8 @@ jobs:
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: target path: target
# key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
key: ubuntu-latest-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} # key: ubuntu-latest-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- run: rustup component add rustfmt - run: rustup component add rustfmt
- run: rustup component add clippy - run: rustup component add clippy
- run: cargo build --all-features - run: cargo build --all-features