mirror of
https://github.com/lightsoutgames/bevy_tts.git
synced 2024-11-22 07:25:56 +00:00
Disable default features on Linux until runners upgrade speech-dispatcher.
This commit is contained in:
parent
685235384e
commit
c434d02f69
18
.github/workflows/test.yml
vendored
18
.github/workflows/test.yml
vendored
|
@ -28,11 +28,27 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: check
|
command: check
|
||||||
args: --all-features --examples
|
args: --all-features --examples
|
||||||
|
if: ${{ runner.os != 'Linux' }}
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
||||||
|
args: --no-default-features --examples
|
||||||
|
if: ${{ runner.os == 'Linux' }}
|
||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: fmt
|
command: fmt
|
||||||
args: --all -- --check
|
args: --all --check
|
||||||
- uses: actions-rs/clippy-check@v1
|
- uses: actions-rs/clippy-check@v1
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
args: --all-features
|
args: --all-features
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
||||||
|
args: --all-features --examples
|
||||||
|
if: ${{ runner.os != 'Linux' }}
|
||||||
|
- uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: check
|
||||||
|
args: --no-default-features --examples
|
||||||
|
if: ${{ runner.os == 'Linux' }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user