mayhem cli may change; omit sha #109
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: Test rules_mayhem Mayhemfiles | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
env: | |
USE_BAZEL_VERSION: ${{ github.event.schedule != '' && 'last_green' || '' }} | |
jobs: | |
tests: | |
name: Run tests | |
runs-on: ubuntu | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build Mayhemfiles | |
run: | | |
bazel build //examples:all | |
- name: Run tests | |
run: | | |
bazel test --test_output=all //examples:all |