move CHECK_ESCAPE_TAIL_IMPL_GET_MASK_512 to check_mask.inl.h #62
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: "Run Test" | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "src/**" | |
- "test/**" | |
- "CMakeLists.txt" | |
pull_request: | |
paths: | |
- "src/**" | |
- "test/**" | |
- "CMakeLists.txt" | |
jobs: | |
RUN-TEST: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
pyver: ["9", "10", "11", "12", "13", "14"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Install nix | |
uses: cachix/install-nix-action@master | |
- name: Setup cachix | |
uses: cachix/cachix-action@master | |
with: | |
name: antares0982 | |
- name: Run build | |
run: | | |
nix develop -c python ./dev_tools/automated_test.py --pyver ${{ matrix.pyver }} --ignore bench |