mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-23 15:33:26 +08:00
19 lines
321 B
YAML
19 lines
321 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup
|
|
run: pip3 install pylint
|
|
- name: Run a multi-line script
|
|
run: |
|
|
echo Add other actions to build,
|
|
pylint --version
|
|
echo test, and deploy your project.
|