From 7a5f32092712b7af8d9241058d15e290cd24ef52 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Sun, 7 Jun 2020 09:04:56 +0200 Subject: [PATCH] move to github actions instead of app.abaplint.org (#3463) * Update and rename ci.yml to build.yml * Create lint.yml --- .github/workflows/{ci.yml => build.yml} | 2 +- .github/workflows/lint.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) rename .github/workflows/{ci.yml => build.yml} (98%) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/build.yml similarity index 98% rename from .github/workflows/ci.yml rename to .github/workflows/build.yml index 2f0124a53..8d82769f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: CI +name: build on: [push, pull_request] diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 000000000..b2884ed1a --- /dev/null +++ b/.github/workflows/lint.yml @@ -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 }}