Skip to content

Commit

Permalink
Implement a pip installation workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRomualdi committed Mar 28, 2022
1 parent eb25b6a commit b0b0b02
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/pip-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: pip installation CI Workflow

on:
push:
pull_request:
schedule:
# * is a special character in YAML so you have to quote this string
# Execute a "nightly" build at 2 AM UTC
- cron: '0 2 * * *'

jobs:
build-with-conda-dependencies:
name: '[pip:${{ matrix.os }}]'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', 'pypy-3.8']
os: [ubuntu-20.04, macos-10.15, windows-2019]

steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Display Python version
run: python --version

- name: Installation
run: pip install .

0 comments on commit b0b0b02

Please sign in to comment.