This commit is contained in:
parent
f38ea4d9c1
commit
a8582bf1a3
1 changed files with 6 additions and 2 deletions
|
@ -3,25 +3,29 @@ name: tests
|
|||
steps:
|
||||
- name: test-linux-debug
|
||||
image: rust
|
||||
depends_on: [ clone ]
|
||||
commands:
|
||||
- apt update
|
||||
- apt install -y libgtk-3-dev
|
||||
- cargo test -v
|
||||
|
||||
- name: test-win-debug
|
||||
image: rust
|
||||
image: lordmzte/rust-win
|
||||
depends_on: [ clone ]
|
||||
commands:
|
||||
- cargo test -v --target x86_64-pc-windows-gnu
|
||||
|
||||
- name: test-linux-release
|
||||
image: rust
|
||||
depends_on: [ clone ]
|
||||
commands:
|
||||
- apt update
|
||||
- apt install -y libgtk-3-dev
|
||||
- cargo test -v --release
|
||||
|
||||
- name: test-win-release
|
||||
image: rust
|
||||
image: lordmzte/rust-win
|
||||
depends_on: [ clone ]
|
||||
commands:
|
||||
- cargo test -v --target x86_64-pc-windows-gnu --release
|
||||
---
|
||||
|
|
Loading…
Reference in a new issue