fix(doc): action functions must use action_function
docstring, and non-action functions must not
#1379
Workflow file for this run
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: macOS | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
tags: [ '*' ] | |
schedule: | |
- cron: '15 7 * * 0' # Sundays at 0715Z | |
workflow_dispatch: | |
jobs: | |
macOS: | |
name: macOS (latest) | |
uses: ./.github/workflows/ci.yml | |
with: | |
id: macOS | |
runner: macos-latest | |
matrix: >- | |
{ | |
"id": [ | |
"cpp", | |
"noROOT", | |
"python", | |
"fortran" | |
], | |
"include": [ | |
{ "id": "cpp", "CC": "gcc", "CXX": "g++", "opts": "-Dbuildtype=release -Dz_require_root=true -Dtest_validator_all_stats=true" }, | |
{ "id": "noROOT", "CC": "gcc", "CXX": "g++", "opts": "-Dbuildtype=release -Dz_require_root=false" }, | |
{ "id": "python", "CC": "gcc", "CXX": "g++", "opts": "-Dbuildtype=release -Dz_require_root=true -Dbind_python=true" }, | |
{ "id": "fortran", "CC": "gcc", "CXX": "g++", "opts": "-Dbuildtype=release -Dz_require_root=true -Dbind_fortran=true" } | |
] | |
} | |
issue_bot: | |
name: Issue bot | |
if: ${{ github.event_name == 'schedule' && ( cancelled() || failure() ) }} | |
runs-on: ubuntu-latest | |
needs: [ macOS ] | |
permissions: | |
contents: read | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WORKFLOW_ID: macOS | |
RUN_ID: ${{ github.run_id }} | |
REPO_URL: ${{ github.event.repository.html_url }} | |
with: | |
filename: .github/schedule-issue.md |