From 0645763939532b5a4143e66f7c5bf34614984915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Sun, 19 Nov 2023 23:11:44 -0800 Subject: [PATCH] Rename CI workflow to Test This change renames the CI GitHub Actions workflow to Test. We already have another workflow that is named after a verb, so aiming for uniformity seems like the right step. --- .github/workflows/{ci.yml => test.yml} | 6 ++++-- README.md | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) rename .github/workflows/{ci.yml => test.yml} (97%) diff --git a/.github/workflows/ci.yml b/.github/workflows/test.yml similarity index 97% rename from .github/workflows/ci.yml rename to .github/workflows/test.yml index d9acadb..6972977 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,11 @@ # Copyright (C) 2022-2023 Daniel Mueller # SPDX-License-Identifier: GPL-3.0-or-later -name: CI +name: Test -on: [push, pull_request] +on: + pull_request: + push: env: CARGO_TERM_COLOR: always diff --git a/README.md b/README.md index 9803165..435ff3e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![pipeline](https://github.com/d-e-s-o/apcacli/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/d-e-s-o/apcacli/actions/workflows/ci.yml) +[![pipeline](https://github.com/d-e-s-o/apcacli/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/d-e-s-o/apcacli/actions/workflows/test.yml) [![crates.io](https://img.shields.io/crates/v/apcacli.svg)](https://crates.io/crates/apcacli) [![rustc](https://img.shields.io/badge/rustc-1.60+-blue.svg)](https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html)