diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6838bc1..82609de 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,6 +7,7 @@ on: branches: - develop paths-ignore: + - '.github/**' - 'README.md' jobs: @@ -19,16 +20,18 @@ jobs: os: - ubuntu-latest steps: - - uses: actions/setup-go@v5 + - name: Set up Golang environment + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v4 + - name: Checkout Code + uses: actions/checkout@v4 - name: Go Get / Go Test run: | go get -u . - go test ./. + go test ./... - name: Output Summary id: output-summary