Rosetta sync #52
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 HigherOrder tests and measure time | |
run: cd std/ && ./test_all.sh HigherOrder | |
- name: Run RKNL tests and measure time | |
run: cd std/ && ./test_all.sh RKNL | |
# - name: Run ION tests and measure time | |
# run: cd std/ && ./test_all.sh ION | |
- name: Run HigherOrder sample tests | |
run: cd samples/ && ./test_all.sh HigherOrder |