Make sure key is generated correctly)

This commit is contained in:
Antonios Barotsis 2024-01-26 11:36:10 +01:00 committed by João Marcos
parent fd887d59c5
commit 5bba632331

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- main - main
- ciCaching # TODO: Remove before merging
tags: tags:
- "[0-9]+.[0-9]+.[0-9]+" - "[0-9]+.[0-9]+.[0-9]+"
pull_request: pull_request:
@ -96,6 +97,10 @@ jobs:
run: | run: |
rustup toolchain install stable nightly --profile minimal -t ${{ matrix.target }} rustup toolchain install stable nightly --profile minimal -t ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
key: "${{ matrix.target }}-${{ env.EXTRA_CARGO_FLAGS }}"
- name: Test on stable - name: Test on stable
# there's no way to run tests for ARM64 Windows for now # there's no way to run tests for ARM64 Windows for now
if: matrix.target != 'aarch64-pc-windows-msvc' if: matrix.target != 'aarch64-pc-windows-msvc'