diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 80818715..af9b2902 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,3 +1,4 @@ # These are supported funding model platforms github: [jb-alvarado] +open_collective: jonbae diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 51c3b7a5..988b53b0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,11 +2,11 @@ name: rust on: [push, pull_request] jobs: build: -# strategy: -# matrix: -# os: [ubuntu-latest, macOS-latest, windows-latest] -# runs-on: ${{ matrix.os }} - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macOS-latest, windows-latest] + runs-on: ${{ matrix.os }} +# runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: rustup update stable @@ -14,8 +14,8 @@ jobs: uses: actions/cache@v1 with: path: target -# key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - key: ubuntu-latest-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} + key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} +# key: ubuntu-latest-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - run: rustup component add rustfmt - run: rustup component add clippy - run: cargo build --all-features