Skip to content

Commit

Permalink
ci: add a simple CICD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
leoli0605 committed Feb 1, 2024
1 parent 4ff1300 commit f3bd8fb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: build code

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: macos-14

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

- name: Show system info
run: |
uname -a

0 comments on commit f3bd8fb

Please sign in to comment.