Skip to content

Add macro todo_pos! used in lexer to print input file line number. #51

Add macro todo_pos! used in lexer to print input file line number.

Add macro todo_pos! used in lexer to print input file line number. #51

Workflow file for this run

on:
push:
branches:
- 'master'
pull_request:
name: build-and-test
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
check:
name: Build and Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Install Neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: nightly
- name: Install plenary.nvim (for testing)
run: |
mkdir -p ~/.local/share/nvim/site/pack/vendor/start
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
- run: cargo fmt --check
- run: cargo clippy --workspace -- -Dwarnings
- run: cargo build --workspace
- run: cargo test --workspace