WIP: Improvements in tags, do not add instances as defs #231
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: ERT-package-el | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
emacs_version: | |
- 28.2 | |
- 29.1 | |
- release-snapshot | |
# - snapshot | |
steps: | |
- name: Set up Emacs | |
uses: purcell/setup-emacs@master | |
with: | |
version: ${{ matrix.emacs_version }} | |
# Checks-out repository under $GITHUB_WORKSPACE | |
- name: Clone verilog-ext | |
uses: actions/checkout@v2 | |
- name: Install binaries | |
run: | | |
cd $GITHUB_WORKSPACE | |
test/scripts/setup-env.sh | |
test/scripts/install-ts-grammar.sh | |
- name: Run ERT tests | |
run: | | |
cd $GITHUB_WORKSPACE | |
make test_package_el | |