mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 16:40:05 +08:00
18 lines
329 B
YAML
18 lines
329 B
YAML
name: Lint and test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install
|
|
run: |
|
|
sudo apt install python3-setuptools python3-wheel
|
|
|
|
- name: Lint
|
|
run: make --keep-going install-user test lint
|