This repository has been archived on 2024-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
core-old/.drone.yml
renovate 0735938f04
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update dependency golangci/golangci-lint to v1.48 (#20)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| golangci/golangci-lint | docker | minor | `v1.47` -> `v1.48` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzQuMCIsInVwZGF0ZWRJblZlciI6IjMyLjEzNC4wIn0=-->

Co-authored-by: Renovate <renovate@dwysokinski.me>
Reviewed-on: twhelp/core#20
Co-authored-by: renovate <renovate@noreply.localhost>
Co-committed-by: renovate <renovate@noreply.localhost>
2022-08-05 04:02:29 +00:00

63 lines
884 B
YAML

---
kind: pipeline
type: docker
name: test
steps:
- name: test
image: golang:1.19
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
trigger:
event:
- push
- pull_request
branch:
- master
---
kind: pipeline
type: docker
name: check-go-mod
steps:
- name: check go.mod
image: golang:1.19
commands:
- go mod tidy
- git diff --exit-code go.mod
trigger:
event:
- push
- pull_request
branch:
- master
---
kind: pipeline
type: docker
name: golangci-lint
steps:
- name: run golangci-lint
image: golangci/golangci-lint:v1.48
commands:
- golangci-lint run
trigger:
event:
- push
- pull_request
branch:
- master