From 0c35311cc5cf1a5e9073bac08d5e58dcbdae8fde Mon Sep 17 00:00:00 2001 From: tae2089 Date: Sat, 11 May 2024 17:10:01 +0900 Subject: [PATCH] :truck: Rename file name to lower case --- .github/workflows/{CI.yml => lint-test.yaml} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{CI.yml => lint-test.yaml} (90%) diff --git a/.github/workflows/CI.yml b/.github/workflows/lint-test.yaml similarity index 90% rename from .github/workflows/CI.yml rename to .github/workflows/lint-test.yaml index f9097c0..98d528d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/lint-test.yaml @@ -1,13 +1,13 @@ # This workflow will build a golang project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go -name: Lint On main push&PR +name: lint and testing code on: push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] + branches-ignore: + - main + - dev jobs: check-golang: @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 name: Checkout - + - name: Set up Go uses: actions/setup-go@v4 with: