Skip to content

fixup! fixup! fixup! fixup! fixup! fixup! fixup! fix: remove default … #96

fixup! fixup! fixup! fixup! fixup! fixup! fixup! fix: remove default …

fixup! fixup! fixup! fixup! fixup! fixup! fixup! fix: remove default … #96

Workflow file for this run

name: Check code health
on:
push:
branches: [master, main]
jobs:
Scan:
name: Secrets Scan
runs-on: ubuntu-latest
steps:
- name: Check out the repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Scan the repository to find hardcoded secrets
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Tests:
# strategy:
# matrix:
# os: [ubuntu-latest, macos-13, macos-14]
# include:
# - os: macOS-13
# shell: bash
# - os: macOS-14
# shell: bash
# - os: ubuntu-latest
# shell: bash
# runs-on: ${{ matrix.os }}
# defaults:
# run:
# shell: ${{ matrix.shell }}
runs-on: macos-14
timeout-minutes: 50
steps:
- name: Set up Homebrew PATH
run: |
if [[ "${{ runner.os }}" = "macOS" ]]
then
echo "/usr/local/bin:/usr/bin:/bin" >> "${GITHUB_PATH}"
else
echo "/home/linuxbrew/.linuxbrew/bin:/usr/bin:/bin" >> "${GITHUB_PATH}"
fi
- name: Check Homebrew
run: brew --config
- name: Homebrew install
run: |
brew install stow
brew reinstall git
- name: Run install script
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/YasminTeles/dotfiles/main/install.sh)"
env:
CI: true
- name: Show the Home directory
run: |
cd ~
ls -la
- name: Run uninstall script
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/YasminTeles/dotfiles/main/uninstall.sh)"
env:
CI: true
- name: Show the Home directory
run: |
cd ~
ls -la