Skip to content

Commit

Permalink
Try something else
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael committed Sep 29, 2023
1 parent b07fed7 commit d78855f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
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:
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deep-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d78855f

Please sign in to comment.