1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 17:57:59 +00:00

Merge pull request #5473 from ThomasWaldmann/gha

use github actions
This commit is contained in:
TW 2020-11-03 01:26:31 +01:00 committed by GitHub
commit 4ec795a966
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install flake8
- name: Lint with flake8
run: |
flake8 src scripts conftest.py