Skip to content

feat(ci): add release pipeline flow #12

feat(ci): add release pipeline flow

feat(ci): add release pipeline flow #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: '.go-version'
- name: Build
run: make build
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: '.go-version'
- name: Test
run: make test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: '.go-version'
- name: lint-go
uses: golangci/golangci-lint-action@v6.1.0
with:
version: latest
e2e-test:
name: E2E Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: '.go-version'
- name: Run E2E tests
run: make test-e2e
artifacts:
name: Artifacts
uses: ./.github/workflows/artifacts.yaml

Check failure on line 77 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/ci.yaml" -> "./.github/workflows/artifacts.yaml" : You have an error in your yaml syntax on line 94
with:
publish: false
permissions:
contents: read
packages: write