Merge pull request #549 from nharbiso/check-avx512-script #552
This file contains hidden or 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: macOS tests | |
| # This is required | |
| on: | |
| push: | |
| jobs: | |
| just-test: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: Fix git breaking on purpose | |
| run: | | |
| git config --global --add safe.directory '*' | |
| git config --global protocol.file.allow always | |
| - name: Unit tests | |
| run: | | |
| source setup.env | |
| just test | |
| - name: Integration tests | |
| run: | | |
| source setup.env | |
| just test int git_mirror just_install_functions just_archive |