From 8ff5c95366380a6521265816858d3f7ed66a3881 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 15 Jun 2021 20:40:02 +0300 Subject: workflows/test -> workflows/ci --- .github/workflows/ci.yml | 16 ++++++++++++++++ .github/workflows/test.yml | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/test.yml (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b28936d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: Test + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + name: Test + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Test + run: ./.ci/test.sh diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index b28936d..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Test - -on: - push: - pull_request: - workflow_dispatch: - -jobs: - test: - runs-on: ubuntu-latest - name: Test - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Test - run: ./.ci/test.sh -- cgit v1.2.3