mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
4c171e7678
This also applies all non-breaking semver updates.
35 lines
739 B
YAML
35 lines
739 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@v2
|
|
- name: Stable
|
|
run: cargo test
|
|
- name: Oldstable
|
|
run: |
|
|
rustup default 1.57.0
|
|
cargo test
|
|
- name: Clippy
|
|
run: |
|
|
rustup component add clippy
|
|
cargo clippy --all-targets
|
|
check-macos-arm:
|
|
runs-on: macos-11
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install target
|
|
run: rustup update && rustup target add aarch64-apple-darwin
|
|
- name: Build
|
|
run: cargo build --target=aarch64-apple-darwin
|