Skip to content

chore: (lexer) initial structure #5

chore: (lexer) initial structure

chore: (lexer) initial structure #5

Workflow file for this run

name: "Test CI"
on: [push, pull_request]
jobs:
test-flake:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check for flake configurations
run: nix flake check --all-systems --show-trace
test-llvm:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build the project with llvm package
run: nix build .
- name: Runt the llvm hosted binary
run: nix run .
test-gnu:
runs-on: ubuntu-latest
steps:
- name: Clone the repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build the project with gnu package
run: nix build .#gnu
- name: Runt the gnu hosted binary
run: nix run .#gnu