diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-07-04 21:48:35 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-07-04 21:48:35 +0200 |
commit | 4680026dace2ee36aa06475c02fa536d0b536411 (patch) | |
tree | 2c26e4cc97958232f1425907998e29ac96c052c7 /.github/workflows | |
parent | f4f76b31dcb1ea3039803ded234a2e54080db6b9 (diff) | |
download | ghdl-4680026dace2ee36aa06475c02fa536d0b536411.tar.gz ghdl-4680026dace2ee36aa06475c02fa536d0b536411.tar.bz2 ghdl-4680026dace2ee36aa06475c02fa536d0b536411.zip |
Test.yml: fix syntax
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/Test.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 29a655043..6708840b5 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -212,10 +212,11 @@ jobs: # Although we cache this, we let the script run to check if the cache is valid (without conditions) - name: '⚙ Dependencies (brew)' - run: ./scripts/macosx/install-ada.sh - run: brew --prefix llvm - run: ls -l $(brew --prefix llvm) - run: brew --prefix + run: | + ./scripts/macosx/install-ada.sh + brew --prefix llvm + ls -l $(brew --prefix llvm) + brew --prefix - name: '🚧 Build and 🚦 Test GHDL' run: | |