mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
fix windows ci
all platforms again
This commit is contained in:
parent
6c798df40a
commit
0c53fed624
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -12,13 +12,18 @@ jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: WSL Setup
|
||||||
|
if: matrix.os == 'windows-latest'
|
||||||
|
run: |
|
||||||
|
choco install wsl-ubuntu-1804
|
||||||
|
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
|
|
@ -38,6 +43,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cargo clean
|
cargo clean
|
||||||
make clippy
|
make clippy
|
||||||
|
|
||||||
- name: Build Release
|
- name: Build Release
|
||||||
run: make build-release
|
run: make build-release
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue