diff --git a/.github/workflows/pip-ci.yml b/.github/workflows/pip-ci.yml new file mode 100644 index 0000000..cfc4516 --- /dev/null +++ b/.github/workflows/pip-ci.yml @@ -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 .