mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-14 09:11:26 +00:00
20 lines
316 B
YAML
20 lines
316 B
YAML
name: Lint and test
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
|
|
lint_test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup
|
|
run: ./build/scripts/setup.bash
|
|
- name: Lint
|
|
run: ./build/scripts/pylint.bash
|
|
- name: Test
|
|
run: ./build/scripts/test.bash
|