Skip to content

[other] remove warning #43

[other] remove warning

[other] remove warning #43

Workflow file for this run

name: Run Tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ hashFiles('*.nimble') }}
restore-keys: |
${{ runner.os }}-nimble-
if: runner.os != 'Windows'
- uses: jiro4989/setup-nim-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: nimble -y test
if: runner.os == 'Linux'
- run: nimble -y -d:avx2=0 test
if: runner.os == 'Windows'
- run: nimble -y -d:avx2=0 -d:bmi2=0 test
if: runner.os == 'macOS'