Skip to content

prepare building of images for DockerHub #203

prepare building of images for DockerHub

prepare building of images for DockerHub #203

name: on-ubuntu-latest
on:
push:
schedule:
- cron: '0 0 2 * *' # run once per month
workflow_dispatch:
jobs:
on-ubuntu-latest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Initialisation
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y tk-dev tcl-dev
- name: Build OOMMF
run: make build
- name: Set OOMMFTCL
run: echo "OOMMFTCL=$GITHUB_WORKSPACE/oommf/oommf.tcl" >> $GITHUB_ENV
- name: Test OOMMF
run: make test-all