diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f493fa5..5092704 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,6 +11,11 @@ jobs: steps: - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + components: rustfmt, clippy - name: Build run: cargo build - name: Run tests diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e2a23a6..628c66b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -11,6 +11,11 @@ jobs: steps: - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + components: rustfmt, clippy - name: Build run: cargo build - name: Run tests