Skip to content

Add a few more tests & logical operators; make a README.md more usefu… #14

Add a few more tests & logical operators; make a README.md more usefu…

Add a few more tests & logical operators; make a README.md more usefu… #14

Workflow file for this run

name: Linux Tests
on:
push:
branches: [ main, master ]
paths:
- 'SIMD.h'
- 'tests/simd_tests.cpp'
permissions:
contents: write
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake
pip install matplotlib numpy pandas py-cpuinfo
- name: Run tests and update benchmarks
run: |
chmod +x ./run_tests.sh
./run_tests.sh
- name: Pull latest changes
run: git pull
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update benchmark results from GitHub Actions (Linux)"
file_pattern: benchmark_results_linux_gcc/*
add_options: -f