mksnapshot: Exclude rc tags from the search #508
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
## Workflow for GitHub Actions testing. | |
name: build | |
"on": [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
AUTHOR_TESTING: 1 | |
C_TAP_VERBOSE: 1 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install | |
run: sudo -E ci/install | |
- name: test | |
run: ci/test |