Add int division #6
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: Linux Tests | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| 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 |