Merge pull request #65 from fangohr/fix-anv-spintevolve-3d #126
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: on-osx-latest | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 0 2 * *' # run once per month | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: how many cores in hardware | |
run: | | |
sysctl -n hw.ncpu | |
- name: compile oommf | |
run: | | |
cat oommf-version | |
make build | |
- name: run version and platform | |
run: | | |
pwd | |
tclsh oommf/oommf.tcl +version | |
tclsh oommf/oommf.tcl +platform | |
- name: run standard problems 3 and 4 directly | |
run: | | |
make test-all |