2019-10-06 04:58:10 -07:00

21 lines
379 B
YAML

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup
run: |
sudo apt-get install python3-setuptools
pip3 install pylint
- name: Run a multi-line script
run: |
echo Add other actions to build,
pylint --version
echo test, and deploy your project.