make-release: add missing reusable workflow version #29
This file contains hidden or 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
| # experiment with triggering events: push, pull_request | |
| name: CI all | |
| on: [push, pull_request] | |
| jobs: | |
| build-all: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.fork | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run a one-line script | |
| run: echo Hello, world! | |
| - name: Run a multi-line script | |
| run: | | |
| echo Add other actions to build, | |
| echo test, and deploy your project. |