disable codeql for docs. merge build and test back to one job (#3746)

This commit is contained in:
Max Golionko 2023-02-02 07:59:08 -05:00 committed by GitHub
parent dc142867b8
commit df1e545c0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 65 additions and 74 deletions

View File

@ -15,6 +15,7 @@ on:
push: push:
branches: [master, cluster] branches: [master, cluster]
paths-ignore: paths-ignore:
- "docs/**"
- "**.md" - "**.md"
- "**.txt" - "**.txt"
- "**.js" - "**.js"
@ -22,6 +23,7 @@ on:
# The branches below must be a subset of the branches above # The branches below must be a subset of the branches above
branches: [master, cluster] branches: [master, cluster]
paths-ignore: paths-ignore:
- "docs/**"
- "**.md" - "**.md"
- "**.txt" - "**.txt"
- "**.js" - "**.js"

View File

@ -1,66 +0,0 @@
name: main - test
on:
push:
branches:
- master
- cluster
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
branches:
- master
- cluster
paths-ignore:
- "docs/**"
- "**.md"
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.5
check-latest: true
cache: true
- name: Dependencies
run: |
make install-golangci-lint
make check-all
git diff --exit-code
test:
needs: lint
strategy:
matrix:
scenario: ["test-full", "test-pure", "test-full-386"]
name: test
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.5
check-latest: true
cache: true
- name: run tests
run: |
make ${{ matrix.scenario}}
- name: Publish coverage
uses: codecov/codecov-action@v3
with:
file: ./coverage.txt

View File

@ -1,22 +1,77 @@
name: main name: main
on: on:
workflow_run: push:
workflows: ["main - test"] branches:
types: - master
- completed - cluster
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
branches:
- master
- cluster
paths-ignore:
- "docs/**"
- "**.md"
permissions: permissions:
contents: read contents: read
jobs: jobs:
build: lint:
name: Build name: lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Code checkout - name: Code checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with: with:
ref: ${{ github.event.workflow_run.head_branch }} go-version: 1.19.5
check-latest: true
cache: true
- name: Dependencies
run: |
make install-golangci-lint
make check-all
git diff --exit-code
test:
needs: lint
strategy:
matrix:
scenario: ["test-full", "test-pure", "test-full-386"]
name: test
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.5
check-latest: true
cache: true
- name: run tests
run: |
make ${{ matrix.scenario}}
- name: Publish coverage
uses: codecov/codecov-action@v3
with:
file: ./coverage.txt
build:
needs: test
name: build
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v3 uses: actions/setup-go@v3