Add first support for neon 32 and 64 bit #289
This file contains hidden or 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: Arch consistency check | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout xsimd | |
| uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| run: sudo apt install g++ | |
| - name: Check architecture consistency | |
| run: cd test && sh ./check_arch.sh |