Skip to content

Commit

Permalink
chore: add basic ci tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bngo97 committed Feb 5, 2025
1 parent 1557127 commit e088287
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci-core-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: core-tests

on:
pull_request:
types: [
# Default pull_request trigger types.
opened,
synchronize,
reopened,
]
push:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Validate syntax
run: bash -n *.sh

0 comments on commit e088287

Please sign in to comment.