Fix syntax error in yml

This commit is contained in:
Jonathan Kelley 2023-07-19 13:26:34 -07:00
parent d9f0b14968
commit 27a6babbd7
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE

View file

@ -93,35 +93,40 @@ jobs:
os: windows-latest,
toolchain: '1.65.0',
cross: false,
command: 'test --all --tests'
command: 'test',
args: '--all --tests'
}
- {
target: x86_64-unknown-linux-gnu,
os: ubuntu-latest,
toolchain: '1.65.0',
cross: false,
command: 'test --all --tests'
command: 'test',
args: '--all --tests'
}
- {
target: x86_64-apple-darwin,
os: macos-latest,
toolchain: '1.65.0',
cross: false,
command: 'test --all --tests'
command: 'test',
args: '--all --tests'
}
- {
target: aarch64-apple-ios,
os: macos-latest,
toolchain: '1.65.0',
cross: false,
command: 'build --package dioxus-mobile'
command: 'build',
args: '--package dioxus-mobile'
}
- {
target: aarch64-linux-android,
os: ubuntu-latest,
toolchain: '1.65.0',
cross: true,
command: 'build --package dioxus-mobile'
command: 'build',
args: '--package dioxus-mobile'
}
steps:
@ -151,7 +156,7 @@ jobs:
with:
use-cross: ${{ matrix.platform.cross }}
command: ${{ matrix.platform.command }}
args: --target ${{ matrix.platform.target }}
args: --target ${{ matrix.platform.target }} ${{ matrix.platform.args }}