/
githubmirror
/
alacritty
Обзор
Документация
Войти
/
githubmirror
/
alacritty
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/ci.yml
37 строк
915 B
Kirill Chibisov
Bump MSRV to 1.81.0
28 май 2025, 08:16
28 май 2025, 08:16
1fb1fd2
Код
Авторство
О чём код?
name: CI on: [push, pull_request] env: CARGO_TERM_COLOR: always jobs: build: strategy: matrix: os: [windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Stable run: cargo test - name: Stable (no default features) run: cargo test -p alacritty_terminal --no-default-features - name: Oldstable run: | rustup default $(cat Cargo.toml | grep "rust-version" | sed 's/.*"\(.*\)".*/\1/') cargo test - name: Clippy run: | rustup component add clippy cargo clippy --all-targets check-macos-x86_64: runs-on: macos-latest steps: - uses: actions/checkout@v4 - name: Install target run: rustup update && rustup target add x86_64-apple-darwin - name: Build run: cargo build --target=x86_64-apple-darwin