mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58: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:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: WSL Setup
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: |
|
||||
choco install wsl-ubuntu-1804
|
||||
|
||||
- name: Install Rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
|
|
@ -38,6 +43,7 @@ jobs:
|
|||
run: |
|
||||
cargo clean
|
||||
make clippy
|
||||
|
||||
- name: Build Release
|
||||
run: make build-release
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue