diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8653822..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,19 +0,0 @@ - -# Golang CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-go/ for more details -version: 2 -jobs: - build: - docker: - - image: cimg/go:1.18 - steps: - - - checkout - - run: make - - - add_ssh_keys: - fingerprints: - - f4:3f:d8:d7:4f:53:e9:2f:03:55:e9:28:8d:7e:dc:bc - - - run: make update-coverage-badge diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 59970d2..12b8583 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,21 +2,20 @@ name: Go on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: - build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.18 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: "1.21" - - name: Build and Test - run: make + - name: Build and Test + run: make