Bump super-linter/super-linter from 5.7.0 to 5.7.1 #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: tests | |
on: | |
workflow_call: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
env: | |
CB_ADDRESS: couchbase | |
CB_CLIENT_PORT: 8091 | |
CB_NODE_PORT: 11210 | |
CB_PASSWORD: 123456 | |
CB_USERNAME: Administrator | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup go | |
uses: actions/[email protected] | |
with: | |
go-version: "1.21.0" | |
- name: Couchbase Initialization | |
run: | | |
ls -als | |
make cbinit | |
- name: Couchbase Unit Tests | |
run: | | |
make test | |
- name: Couchbase Acceptance Tests | |
run: | | |
make test | |
make testacc | |
services: | |
couchbase: | |
image: couchbase | |
ports: | |
- 8091-8094:8091-8094 | |
- 11210:11210 | |
- 18091-18096:18091-18096 |