Skip to content

Commit 7a4b0d8

Browse files
committed
Merge branch 'master' of github.com:mpi4py/mpi4py-fft
2 parents 810ae4f + fcbfe5c commit 7a4b0d8

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: github-CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [ubuntu-latest, macOS-latest]
12+
python-version: [3.6, 3.7, 3.8]
13+
name: Python ${{ matrix.python-version }} example
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
18+
- name: setup-conda
19+
uses: s-weigand/setup-conda@v1
20+
with:
21+
update-conda: true
22+
python-version: ${{ matrix.python-version }}
23+
conda-channels: anaconda, conda-forge
24+
- run: conda --version
25+
- run: which python
26+
- run: |
27+
conda config --add channels conda-forge
28+
conda config --set always_yes yes
29+
conda install -n root conda-build numpy
30+
conda build ./conf

0 commit comments

Comments
 (0)