Errors when running lj_liquid_structurefactor.py with v4.2.2 #3264
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: run tests on macOS | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
macos: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Setup Python environment | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: '3.9' | |
- name: Build and check | |
uses: ./.github/actions/build_and_check | |
env: | |
build_procs: 4 | |
check_procs: 4 |