summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2019-12-11 23:21:25 -0500
committerJack O'Connor <oconnor663@gmail.com>2019-12-11 23:21:25 -0500
commit59752de9bd9fc4acf2ce40ec995024c5687a8a45 (patch)
treee2df00c04789c73ae62eb6f50bd33d50b2675439 /.github
parent6823655aedb707981d57c2e661a198a5a5302cbd (diff)
fix syntax errors in ci.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f0d491b..093d2f3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,6 +50,6 @@ jobs:
- run: cross test --target ${{ matrix.arch }}
# Test the NEON implementation on ARM targets.
- run: cross test --target ${{ matrix.arch }} --features=c_neon
- if: startsWith(${{ matrix.arch }}, 'armv7-') || startsWith($${ matrix.arch }}, 'aarch64-')
+ if: startsWith(matrix.arch, 'armv7-') || startsWith(matrix.arch, 'aarch64-')
# Test vectors. Note that this uses a hacky script due to path dependency limitations.
- run: ./test_vectors/cross_test.sh --target ${{ matrix.arch }}