chore: 0.10.0 changes #865
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
name: Merge checks | |
jobs: | |
check: | |
name: Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install rust toolchain | |
uses: dtolnay/[email protected] | |
with: | |
components: clippy | |
- name: Run cargo check | |
run: cargo check --features sixel | |
- name: Run cargo test | |
run: cargo test | |
- name: Run cargo clippy | |
run: cargo clippy -- -D warnings | |
- name: Install nightly toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- name: Run cargo fmt | |
run: cargo +nightly fmt --all -- --check | |
nix-flake: | |
name: Validate nix flake | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install nix | |
uses: DeterminateSystems/nix-installer-action@v13 | |
- name: Build | |
run: nix build .#dev.presenterm | |
bat-assets: | |
name: Validate bat assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Validate assets | |
run: ./bat/verify.sh | |
json-schemas: | |
name: Validate JSON schemas | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Validate config file schema | |
run: ./scripts/validate-config-file-schema.sh |