From 4a95562740bee221061156110b6f60bac969eb55 Mon Sep 17 00:00:00 2001 From: Sebastian Sellmeier Date: Thu, 1 Jul 2021 18:38:54 +0200 Subject: Update readme to show beta-release, rename workflow-config --- .github/workflows/main.yml | 16 ++++++++++++++++ .github/workflows/shellcheck.yml | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 .github/workflows/main.yml delete mode 100644 .github/workflows/shellcheck.yml (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..a770977 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: Main + +on: [push, pull_request] + +jobs: + shellcheck: + name: ShellCheck + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + severity: style diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml deleted file mode 100644 index 48038d4..0000000 --- a/.github/workflows/shellcheck.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: ShellCheck - -on: [push, pull_request] - -jobs: - shellcheck: - name: ShellCheck - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Run ShellCheck - uses: ludeeus/action-shellcheck@master - with: - severity: style -- cgit v1.2.3