move to github actions instead of app.abaplint.org (#3463)

* Update and rename ci.yml to build.yml

* Create lint.yml
This commit is contained in:
Lars Hvam 2020-06-07 09:04:56 +02:00 committed by GitHub
parent 9af61c99c6
commit 7a5f320927
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -1,4 +1,4 @@
name: CI
name: build
on: [push, pull_request]

15
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: abaplint
uses: abaplint/actions-abaplint@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}