Make the dict_equal and array_equal functions work in rw #42
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: Criterion Unit Tests | |
on: | |
push: | |
branches: [ "criterion-tests" ] | |
pull_request: | |
branches: [ "criterion-tests" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update version | |
run: sudo apt update | |
- name: Install criterion from apt | |
run: sudo apt install libcriterion-dev | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make | |
- name: make check | |
run: make check |