diff options
| author | Nicolas Paul <n@nc0.fr> | 2023-05-26 17:26:17 +0200 |
|---|---|---|
| committer | Nicolas Paul <n@nc0.fr> | 2023-05-26 17:26:17 +0200 |
| commit | bd426ee782d633174ce4907cb7a9d2919be79eda (patch) | |
| tree | 5c2f1758cc2e44696dad68520ebb5d82e0456f58 /.github | |
| parent | e00e455cafb72edb4bddd7bc087e1fb0ff1e4e45 (diff) | |
Clean for v2
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 0e8a5a6..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright (c) 2023 Nicolas Paul All rights reserved. -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. - -name: CI -on: - push: - branches: - - master - pull_request: - branches: - - master -jobs: - go: - name: Golang CI - runs-on: ${{ matrix.os }} - timeout-minutes: 5 - strategy: - fail-fast: true - matrix: - os: - - ubuntu-22.04 - - macos-12 - go_version: - - "1.19" - steps: - - uses: actions/checkout@v3 - name: Cloning repository - - uses: actions/setup-go@v4 - name: Installing Go ${{ matrix.go_version }} - with: - go-version: ${{ matrix.go_version }} - - name: Building project - run: go build -race -v -o=staticgovanityurls . - - name: Testing project - run: go test - - name: Downloading goimports - run: go install golang.org/x/tools/cmd/goimports@latest - - name: Formatting project - run: goimports -e -d -l . - # TODO: doc: |
