Skip to content

Commit

Permalink
Create main.yml for testing CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dyKiU authored Dec 28, 2024
1 parent 6802946 commit f1e619a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test Workflow
on:
workflow_dispatch:
push:
pull_request:

jobs:
test:
runs-on: [self-hosted, macOS]
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: System information
run: |
uname -a
sw_vers
- name: Hello World
run: echo "Hello World from macOS ARM"

0 comments on commit f1e619a

Please sign in to comment.