feat: Add GitHub Receiver #4048
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: Tests | |
on: | |
pull_request: | |
jobs: | |
unit-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-13, windows-2022-8-cores] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache-dependency-path: | | |
go.sum | |
**/go.sum | |
- name: Run Tests | |
run: make test | |
- name: Run Updater Integration Tests (non-linux) | |
if: matrix.os != 'ubuntu-20.04' | |
run: make test-updater-integration | |
- name: Run Updater Integration Tests (linux) | |
if: matrix.os == 'ubuntu-20.04' | |
run: sudo make test-updater-integration |