From 0b615ae3f94d7502179dc31828593abf041360e0 Mon Sep 17 00:00:00 2001 From: Yegor Bugayenko Date: Sun, 18 Sep 2022 06:59:31 +0300 Subject: [PATCH] two new actions --- .github/workflows/pdd.yml | 15 +++++++++++++++ .github/workflows/xcop.yml | 15 +++++++++++++++ .gitignore | 10 ++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .github/workflows/pdd.yml create mode 100644 .github/workflows/xcop.yml create mode 100644 .gitignore diff --git a/.github/workflows/pdd.yml b/.github/workflows/pdd.yml new file mode 100644 index 0000000..25f6357 --- /dev/null +++ b/.github/workflows/pdd.yml @@ -0,0 +1,15 @@ +--- +name: pdd +on: + push: + branches: + - master + pull_request: + branches: + - master +jobs: + pdd: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + - uses: g4s8/pdd-action@master diff --git a/.github/workflows/xcop.yml b/.github/workflows/xcop.yml new file mode 100644 index 0000000..5682297 --- /dev/null +++ b/.github/workflows/xcop.yml @@ -0,0 +1,15 @@ +--- +name: xcop +on: + push: + branches: + - master + pull_request: + branches: + - master +jobs: + xcop: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + - uses: g4s8/xcop-action@master diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a932836 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +target/ +.vscode/ +.idea/ +.DS_Store +*.iml +.project +.settings +.classpath +.recommenders +.mvn/wrapper/maven-wrapper.jar