Skip to content

Update CI.yml

Update CI.yml #3

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI geeup
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
continue-on-error: true
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test packages
continue-on-error: true
run: |
pip install setuptools
pip install wheel
python setup.py sdbist bdist_wheel
cd dist/*
pip install --no-index --find-links=dist/*.whl
geeup -h