feat(ci): add MacOS to CI (#60)

This commit is contained in:
Linda_pp 2023-02-17 20:59:18 +09:00 committed by GitHub
parent feaeb7870f
commit 142bc5720e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,53 +12,34 @@ env:
CI_CARGO_MAKE_VERSION: 0.35.16
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: ["1.59.0", "stable"]
include:
- os: ubuntu-latest
cargo_make_path: ~/.cargo/bin/cargo-make
- os: windows-latest
cargo_make_path: ~\.cargo\bin\cargo-make.exe
- os: macos-latest
cargo_make_path: ~/.cargo/bin/cargo-make
runs-on: ${{ matrix.os }}
steps:
- uses: hecrj/setup-rust-action@50a120e4d34903c2c1383dec0e9b1d349a9cc2b1
with:
rust-version: ${{ matrix.rust }}
components: rustfmt,clippy
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: "Cache cargo make"
id: cache-cargo-make
uses: actions/cache@v3
with:
path: ~/.cargo/bin/cargo-make
path: ${{ matrix.cargo_make_path }}
key: ${{ runner.os }}-${{ matrix.rust }}-cargo-make-${{ env.CI_CARGO_MAKE_VERSION }}
- name: "Install cargo-make"
if: steps.cache-cargo-make.outputs.cache-hit != 'true'
run: cargo install cargo-make --version ${{ env.CI_CARGO_MAKE_VERSION }}
- name: "Format / Build / Test"
run: cargo make ci
env:
RUST_BACKTRACE: full
windows:
name: Windows
runs-on: windows-latest
strategy:
matrix:
rust: ["1.59.0", "stable"]
steps:
- uses: actions/checkout@v1
- uses: hecrj/setup-rust-action@50a120e4d34903c2c1383dec0e9b1d349a9cc2b1
with:
rust-version: ${{ matrix.rust }}
components: rustfmt,clippy
- uses: actions/checkout@v1
- name: "Cache cargo make"
id: cache-cargo-make
uses: actions/cache@v3
with:
path: ~\.cargo\bin\cargo-make.exe
key: ${{ runner.os }}-${{ matrix.rust }}-cargo-make-${{ env.CI_CARGO_MAKE_VERSION }}
- name: "Install cargo-make"
if: steps.cache-cargo-make.outputs.cache-hit != 'true'
run: cargo install cargo-make --version ${{ env.CI_CARGO_MAKE_VERSION }}
run: cargo install cargo-make --version "${CI_CARGO_MAKE_VERSION}"
- name: "Format / Build / Test"
run: cargo make ci
env: