This repository has been archived by the owner on Feb 12, 2025. It is now read-only.
feat(github): merge checks workflow [pulumi] - remove #225
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: CI | |
on: [ push, pull_request ] | |
jobs: | |
lint-and-test: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run linter | |
run: | | |
shellcheck bin/* | |
shellcheck -P SCRIPTDIR -x test/utils test/test-* | |
- run: ./run_tests.sh | |
test-macos: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
runs-on: macos-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./run_tests.sh |