1
0
зеркало из https://github.com/glebtv/tui-textarea.git synced 2026-09-03 14:26:17 +03:00

run CI on Windows and macOS as well as Linux

Этот коммит содержится в:
rhysd
2022-06-19 20:59:53 +09:00
родитель 279473013b
Коммит c6609056b2

9
.github/workflows/ci.yml поставляемый
Просмотреть файл

@@ -3,7 +3,11 @@ on: [push, pull_request]
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: true
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: always
steps:
@@ -15,6 +19,9 @@ jobs:
override: true
- uses: Swatinem/rust-cache@v1
- run: cargo test -- --skip src/lib.rs
if: ${{ matrix.os != 'windows-latest' }}
- run: cargo test -- --skip src\lib.rs
if: ${{ matrix.os == 'windows-latest' }}
lint:
runs-on: ubuntu-latest
env: