1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-25 14:05:41 -05:00
alacritty/.github/workflows/ci.yml

28 lines
480 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:
- uses: actions/checkout@v2
- name: Stable
run: cargo test
- name: Oldstable
run: |
2021-07-13 22:18:40 -04:00
rustup default 1.46.0
cargo test
- name: Clippy
run: |
rustup component add clippy
cargo clippy --all-targets