mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-25 16:33:20 +08:00
25 lines
578 B
YAML
25 lines
578 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup
|
|
run: |
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
sudo apt-add-repository -y ppa:deadsnakes/ppa
|
|
sudo apt-get -y install python3.7 python3.7-dev python3-pip python3-setuptools
|
|
pip3 install pylint
|
|
- name: Run a multi-line script
|
|
run: |
|
|
echo Add other actions to build,
|
|
python3 --version
|
|
which pylint || echo damn
|
|
ls /usr/local/bin
|
|
echo test, and deploy your project.
|