Skip to content

refactor: slightly optimized memmove footprint (#641) #1973

refactor: slightly optimized memmove footprint (#641)

refactor: slightly optimized memmove footprint (#641) #1973

Workflow file for this run

name: ci
on:
push:
branches: [master, release/*]
pull_request:
branches: [master, release/*]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate YAML configs
uses: cardinalby/schema-validator-action@v3
with:
file: 'etc/defaults/config*.yaml'
schema: 'schema/json/config.schema.json'
- name: Validate YAML themes
uses: cardinalby/schema-validator-action@v3
with:
file: 'etc/defaults/themes/*.yaml'
schema: 'schema/json/theme.schema.json'
- name: Setup taplo
uses: uncenter/setup-taplo@v1
- name: Validate TOML configs and themes
run: taplo check
- name: Install latest nightly
uses: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
components: rustfmt
- name: Check formatting
run: cargo +nightly fmt --verbose --all --check
- name: markdownlint-cli2-action
uses: DavidAnson/[email protected]
- name: Build
run: cargo build --verbose --benches --workspace
- name: Run tests
run: cargo test --verbose --workspace
- name: Run executable
run: cargo run
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate code coverage
run: |
make coverage
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
test-nix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
- name: Run nix flake check
run: nix flake check --print-build-logs
- name: Run nix build
run: nix build --print-build-logs