spaceapicli/.github/workflows/pythonapp.yml

21 lines
358 B
YAML
Raw Normal View History

2020-02-05 23:11:44 +01:00
name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
2020-02-05 23:16:12 +01:00
python setup.py install
2020-02-09 16:45:14 +01:00