Skip to content

feat(github): merge checks workflow [pulumi] #214

feat(github): merge checks workflow [pulumi]

feat(github): merge checks workflow [pulumi] #214

Workflow file for this run

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