Skip to content

Update lint_vba.yml #47

Update lint_vba.yml

Update lint_vba.yml #47

Workflow file for this run

name: Lint VBA
on:
push:
branches:
- dev
- master
pull_request:
jobs:
Lint Code:

Check failure on line 10 in .github/workflows/lint_vba.yml

View workflow run for this annotation

GitHub Actions / Lint VBA

Invalid workflow file

The workflow is not valid. .github/workflows/lint_vba.yml (Line: 10, Col: 3): The identifier 'Lint Code' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
name: Test and Static Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install antlr4-tools
wget https://raw.githubusercontent.com/Beakerboy/VBA_Tokenizer/ANTLR/vba.g4
antlr4-parse
- name: Lint with antlr
run: |
foo=$(antlr4-parse vba.g4 startRule src/ClassModules/SQLQuery.cls 2>&1);if [[ foo -ne 0 ]]; then exit 1; fi
- name: Lint tests with antlr
run: |
antlr4-parse vba.g4 startRule testing/ClassModules/*.cls
antlr4-parse vba.g4 startRule testing/Modules/*.bas