Skip to content

Bump pyiron from 0.5.1 to 0.5.2 #47

Bump pyiron from 0.5.1 to 0.5.2

Bump pyiron from 0.5.1 to 0.5.2 #47

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main ]
jobs:
build_linux:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: "3.11"
- name: Build Constructor
shell: bash -l {0}
run: |
conda install -y --name test -c conda-forge constructor
mkdir build
constructor -v --output-dir=build --platform="linux-64" constructor
build_mac:
name: MacOsX
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: "3.11"
- name: Build Constructor
shell: bash -l {0}
run: |
conda install -y --name test -c conda-forge constructor
mkdir build
constructor -v --output-dir=build --platform="osx-64" constructor
build_win:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: "3.11"
- name: Build Constructor
shell: bash -l {0}
run: |
conda install -y --name test -c conda-forge constructor
mkdir build
constructor -v --output-dir=build --platform="win-64" constructor