andreped's picture
build for python 3.7
fe1e8bc
raw
history blame
896 Bytes
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-18.04
TARGET: ubuntu
CMD_BUILD: pip install git+https://github.com/andreped/livermask.git
- os: macos-10.15
TARGET: macos
CMD_BUILD: pip install git+https://github.com/andreped/livermask.git
- os: windows-2019
TARGET: windows
CMD_BUILD: pip install git+https://github.com/andreped/livermask.git
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install program for ${{matrix.TARGET}}
run: ${{matrix.CMD_BUILD}}
- name: Test CLI
run: livermask --help