24 lines
426 B
YAML
24 lines
426 B
YAML
name: Test safe strings safety
|
|
on: [push]
|
|
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup GHDL
|
|
uses: ghdl/setup-ghdl-ci@nightly
|
|
|
|
- name: Verification of ghdl installation
|
|
run: |
|
|
ghdl --version
|
|
$(GHDL) --version
|
|
|
|
- name: build test and run test
|
|
run: |
|
|
make | grep Error
|