Skip to content

Commit

Permalink
ci: add simple build ci
Browse files Browse the repository at this point in the history
  • Loading branch information
richerfu committed Oct 23, 2024
1 parent 52a3536 commit f4f2e51
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/simple-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Action name
name: Simple Test Action

on:
push

# Jobs section
jobs:
simple-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup OpenHarmony SDK
uses: openharmony-rs/[email protected]
id: setup-ohos
with:
version: '5.0'

- name: Build example
run: |
bash ./scripts/build.sh

0 comments on commit f4f2e51

Please sign in to comment.