Hyperfine measurement #6
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: Test standard library | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: freckle/stack-action@v5 | |
- name: Install hyperfine | |
run: sudo apt-get install hyperfine | |
- name: Install bruijn | |
run: stack install | |
- name: Run tests and measure time | |
run: cd std/ && ./test_all.sh |