1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00
alacritty/.github/workflows/ci.yml

38 lines
925 B
YAML
Raw Normal View History

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:
2024-08-31 04:35:48 -04:00
- 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
2021-08-17 14:04:46 -04:00
steps:
2024-08-31 04:35:48 -04:00
- uses: actions/checkout@v4
2021-08-17 14:04:46 -04:00
- name: Install target
run: rustup update && rustup target add x86_64-apple-darwin
- name: Build
run: cargo build --target=x86_64-apple-darwin