🐛 apply alias if any contexts have index directive #234
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run test | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
test-ubuntu: | |
if: github.event.pull_request.draft == false | |
name: test on ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run test (ubuntu) | |
run: make test | |
test-macos: | |
if: github.event.pull_request.draft == false | |
name: test on macOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies (macOS) | |
run: | | |
python3 -m venv .venv | |
. .venv/bin/activate | |
python3 -m pip install -r requirements.txt | |
- name: Run gtest (macOS) | |
run: | | |
make gtest | |
. .venv/bin/activate | |
python3 ./test/run_tests.py |