Skip to content

Fix vscode.sh script to create the vscode settings directory if it do… #36

Fix vscode.sh script to create the vscode settings directory if it do…

Fix vscode.sh script to create the vscode settings directory if it do… #36

Workflow file for this run

name: macOS
on:
push:
branches: main
paths-ignore:
- 'README.md'
pull_request:
branches: main
paths-ignore:
- 'README.md'
jobs:
macOS:
name: macOS
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup SSH
uses: webfactory/[email protected]
with:
ssh-private-key: |
${{ secrets.SSH_PRIVATE_KEY }}
- name: Configure Homebrew cache
uses: actions/cache@v4
with:
path: |
~/Library/Caches/Homebrew
~/Library/Caches/Homebrew/downloads
key: ${{ runner.os }}-brew-${{ hashFiles('**/Brewfile.lock.json') }}
- name: Setup
run: make mac
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}