mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
37 lines
925 B
YAML
37 lines
925 B
YAML
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 alacritty/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
|