Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try fixing the DeepSource workflow not triggering #3375

Merged
merged 9 commits into from
Sep 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try something else
raphael committed Sep 29, 2023

Unverified

This user has not yet uploaded their public signing key.
commit d78855fe4e138dbf031f80af1461ab7875dadb46
12 changes: 7 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Run Tests and Static Analysis"
name: Run Tests and Static Analysis
on:
push:
branches:
@@ -12,17 +12,19 @@ jobs:
strategy:
fail-fast: true
matrix:
go: ['1.20', '1.21']
os: ['ubuntu-latest', 'windows-latest']
# go: ['1.20', '1.21']
go: ['1.21']
os: ['ubuntu-latest']
# os: ['ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code
uses: actions/checkout@v4
- name: Build
run: make ci
- name: Upload test coverage for deep source
4 changes: 2 additions & 2 deletions .github/workflows/deep-source.yml
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@ name: Report Test Coverage
on:
workflow_run:
workflows:
- "Run Tests and Static Analysis"
- build
types: [completed]

jobs:
upload:
report:
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps: