Merge pull request #591 from devhindo/master #1173
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: Meshery Linkerd Workflow | |
on: | |
# No one should be pushing to master directly. | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**.go' | |
- '**.yml' | |
- '**.yaml' | |
jobs: | |
detect_changes: | |
runs-on: ubuntu-latest | |
outputs: | |
go_changes: ${{ steps.filter.outputs.go_changes }} | |
yaml_changes: ${{ steps.filter.outputs.yaml_changes }} | |
steps: | |
- uses: actions/checkout@master | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
go_changes: | |
- '**.go' | |
yaml_changes: | |
- '**.yml' | |
- '**.yaml' | |
golangci-lint: | |
runs-on: ubuntu-latest | |
needs: detect_changes | |
if: needs.detect_changes.outputs.go_changes == 'true' | |
steps: | |
- name: Setup go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.23 | |
- name: Checkout repository | |
uses: actions/checkout@master | |
- name: Run Linters | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --timeout=5m | |
codecov: | |
name: Code Coverage | |
if: github.repository == 'meshery/meshery-linkerd' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.23.x | |
- name: Run unit tests | |
run: go test --short ./... -race -coverprofile=coverage.txt -covermode=atomic | |
- name: Upload coverage to Codecov | |
if: github.repository == 'meshery/meshery-linkerd' | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.txt | |
flags: unittests |