build dist for tests
Some checks failed
Cargo / check (push) Successful in 27s
Cargo / build (push) Successful in 32s
Cargo / test (push) Failing after 45s

This commit is contained in:
2025-07-18 15:40:56 +01:00
parent 9557bb694c
commit 9e4c222216

View File

@ -23,7 +23,7 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }} ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
${{ runner.os }}-cargo-build-target ${{ runner.os }}-cargo-build-target
- name: Build project - name: Build release project
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: build command: build
@ -68,6 +68,12 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-cargo-test-target-${{ hashFiles('**/Cargo.toml') }} ${{ runner.os }}-cargo-test-target-${{ hashFiles('**/Cargo.toml') }}
${{ runner.os }}-cargo-test-target ${{ runner.os }}-cargo-test-target
- name: Debug
run: |
node --version
npm --version
- name: Build
run: make build
- name: Run tests - name: Run tests
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with: