Continuous integration healthcheck #140
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: Continuous integration healthcheck | ||
on: | ||
schedule: | ||
- cron: 0 6 * * * # at 06:00 every day, UTC | ||
workflow_dispatch: | ||
jobs: | ||
test: | ||
name: Testing | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go: | ||
- 1.x | ||
- 1.21.x | ||
- 1.22.x | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v4.1.1 | ||
with: { fetch-depth: 0 } | ||
- name: Set up Go environment | ||
uses: actions/setup-go@v5.0.0 | ||
with: { go-version: '${{ matrix.go }}' } | ||
- name: Fetch new test data | ||
run: ./Taskfile testdata | ||
- name: Prepare and run tests | ||
run: make env deps-fetch test | ||
notify: | ||
name: Notifying | ||
needs: [ update, test ] | ||
Check failure on line 36 in .github/workflows/ci.healthcheck.yml GitHub Actions / Continuous integration healthcheckInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
if: github.event_name != 'pull_request' && (failure() || success()) | ||
steps: | ||
- name: Send Slack notification | ||
uses: rtCamp/action-slack-notify@v2.2.1 | ||
env: | ||
SLACK_COLOR: ${{ contains(needs.*.result, 'failure') && 'failure' || 'success' }} | ||
SLACK_ICON: https://github.com/github.png?size=64 | ||
SLACK_TITLE: 'βοΈ ${{ github.repository }}: ${{ github.workflow }}' | ||
SLACK_USERNAME: GitHub Actions | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |