Merging 842615e6f6785df6993f56a401009bbc797ef3aa into trunk-temp/pr-4… #31
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
# GitHub Action to run all my CI tasks. | |
name: Continuous Integration | |
on: | |
pull_request: | |
branches: [main] | |
push: {} | |
workflow_dispatch: {} | |
permissions: read-all | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install perltidy | |
run: sudo apt-get update && sudo apt-get install -y perltidy | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Bootstrap Check | |
run: ./script/bootstrap | |
- name: Lint Check | |
run: ./script/lint | |
- name: Tests | |
run: ./script/test |