Files
matar/.github/workflows/main.yml
Amneesh Singh a0d2297896 refactor: make linter happy
also add a few unused coprocessor instructions

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-09-14 01:13:04 +05:30

26 lines
646 B
YAML

name: matar
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v20
with:
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
- name: meson build
run: nix develop -c meson setup build && cd build
- name: clang-format check
run: nix develop -c ninja clang-format-check
- name: clang-tidy check
run: nix develop -c ninja clang-tidy
- name: ninja compile
run: nix develop -c ninja compile