29 lines
528 B
YAML
29 lines
528 B
YAML
name: python-build
|
|
|
|
on: [push]
|
|
|
|
env:
|
|
BUILD_TYPE: Release
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: python-latest
|
|
|
|
steps:
|
|
- name: Show Environment
|
|
run:
|
|
uname -a
|
|
&& git --version
|
|
&& python --version
|
|
&& pip --version
|
|
&& which python3
|
|
- name: Clone Repo
|
|
run:
|
|
git clone https://repos.gmgauthier.com/gmgauthier/pyfly-demo.git .
|
|
- name: Install
|
|
run:
|
|
./install.sh
|
|
- name: Execute
|
|
run:
|
|
./demo.sh
|
|
|