Add facilities for diffing large lists #190
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp: [27, 21] | |
container: | |
image: erlang:${{ matrix.otp }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fix repository ownership | |
run: git config --global --add safe.directory /__w/snabbkaffe/snabbkaffe | |
- name: Compile and run tests | |
run: | | |
apt-get update | |
apt-get upgrade | |
yes | apt-get install gawk | |
make | |
- name: Test with concuerror | |
run: make concuerror_test |