ci(ci.yml): update workflow name and modify deployment job for enhanc… #103
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: Continuous integration, build and deploy | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
services: | ||
arangodb: | ||
image: arangodb:3.10.9 | ||
env: | ||
ARANGO_ROOT_PASSWORD: rootpass | ||
ports: | ||
- 8529/tcp | ||
steps: | ||
- name: set up golang | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '~1.22' | ||
- name: check out code | ||
uses: actions/checkout@v4 | ||
- name: unit test | ||
run: go test -parallel 4 -covermode=atomic -coverprofile=profile.cov -v ./... | ||
env: | ||
ARANGO_USER: root | ||
ARANGO_PASS: rootpass | ||
ARANGO_HOST: localhost | ||
ARANGO_PORT: ${{ job.services.arangodb.ports[8529] }} | ||
GOPROXY: https://proxy.golang.org | ||
- name: upload coverage to codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
file: ./profile.cov | ||
token: ${{ secrets.CODECOV }} | ||
call-build-deploy: | ||
needs: test | ||
uses: dictyBase/workflows/.github/workflows/composite-backend-deploy.yaml@develop | ||
Check failure on line 38 in .github/workflows/ci.yml GitHub Actions / .github/workflows/ci.ymlInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
app: content | ||
repository: ${{ github.repository }} | ||
image: modware-content | ||
ref: ${{ github.ref_name }} | ||
dockerfile: build/package/Dockerfile | ||
cluster: ${{ vars.DEV_STAGING_CLUSTER }} | ||
cluster_state_storage: ${{ vars.DEV_STAGING_KOPS_STATE_STORAGE }} |