replace distutils with packaging for version comparisons #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: C++ tests | |
on: [push, pull_request] | |
jobs: | |
cxx: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install libraries | |
run: | | |
sudo apt-get install libhdf5-serial-dev libboost-dev | |
- name: make test | |
run: make test | |
- name: test | |
run: tests/test_arf |