Bevy 0.15 #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Parry | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "master", "dev" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository code. | |
uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install alsalib headers | |
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev | |
- uses: taiki-e/install-action@nextest | |
- name: Test with nextest | |
run: cargo nextest run --no-default-features --features "parry3d" --test parry3d --profile ci | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v5 | |
if: success() || failure() | |
with: | |
report_paths: 'target/nextest/ci/junit.xml' | |
include_passed: true | |
job_summary: true | |
detailed_summary: true | |
comment: true | |
group_suite: true | |
check_name: Parry Test Report |