Fix memory corruption in AVX-512 codepath #25
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu-20.04"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Dependencies | |
run: | | |
sudo apt update | |
sudo apt install clang-tools valgrind | |
- name: Tests | |
run: make check | |
- name: Clang Analyzer | |
run: make scan | |
- name: Valgrind | |
run: make valgrind |