Skip to content

Commit

Permalink
Add setup workflow for running make commands
Browse files Browse the repository at this point in the history
  • Loading branch information
kryota-dev committed Jul 20, 2024
1 parent 0bfa604 commit 399f75f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Run setup

on:
push:
workflow_dispatch:

permissions:
contents: read

jobs:
make:
runs-on: macos-latest

defaults:
run:
shell: zsh

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

- name: init
run: make init

- name: link
run: make link

- name: defaults
run: make defaults

- name: prezto
run: make prezto

- name: defaultbrowser
run: make defaultbrowser

0 comments on commit 399f75f

Please sign in to comment.