2020-10-01 18:50:32 +00:00
|
|
|
name: cargo-test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2020-10-26 19:55:02 +00:00
|
|
|
test-linux:
|
2020-10-18 09:38:13 +00:00
|
|
|
runs-on: ubuntu-18.04
|
2020-10-01 18:50:32 +00:00
|
|
|
steps:
|
2020-10-01 20:44:48 +00:00
|
|
|
- run: sudo apt update
|
2020-10-18 09:38:13 +00:00
|
|
|
- run: sudo apt install wget apt-transport-https
|
|
|
|
- run: wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
|
|
|
|
- run: sudo dpkg -i packages-microsoft-prod.deb
|
|
|
|
- run: sudo apt update
|
|
|
|
- run: sudo add-apt-repository universe
|
|
|
|
- run: sudo apt install bash dash fish powershell shellcheck xonsh zsh
|
2020-10-24 14:53:10 +00:00
|
|
|
- run: sudo snap install shfmt
|
2020-10-01 18:50:32 +00:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
2020-10-26 17:55:04 +00:00
|
|
|
args: --all-features --no-fail-fast
|
2020-10-26 19:55:02 +00:00
|
|
|
test-windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
toolchain: stable
|
|
|
|
override: true
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --all-features --no-fail-fast
|