From 33078e917d4b897d74cab64d050a06dadeee3e0f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 4 May 2021 09:45:00 +0300 Subject: workflows/test: tweak step names --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 118a7df..40ebd95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,5 +12,5 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Run the tests + - name: Test run: ./.ci/test.sh -- cgit v1.2.3 From 956d307e35c4c414df03e4986535c60a7fee2c6c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 15 Jun 2021 20:39:02 +0300 Subject: workflows/test: use ubuntu-latest --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40ebd95..b28936d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Test steps: - name: Checkout -- cgit v1.2.3 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 From 3fe326f52da8b50ad1f8406d65808da62032893c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 15 Jun 2021 20:40:42 +0300 Subject: workflows/ci: rename to "CI" --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b28936d..0ff4a3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Test +name: CI on: push: -- cgit v1.2.3 From 699532ea1831abe3671e671b9190ee1b82f09580 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 2 Aug 2021 17:04:52 +0300 Subject: .ci/ -> test/ --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ff4a3f..41563bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,4 +13,4 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Test - run: ./.ci/test.sh + run: ./test/test.sh -- cgit v1.2.3