Skip to content

created test workflow to test dotfiles #13

created test workflow to test dotfiles

created test workflow to test dotfiles #13

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Enable manual triggering
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the repository code
- name: Checkout repository
uses: actions/checkout@v4
# Install dotfiles
- name: Install dotfiles
shell: bash -ieo pipefail {0}
env:
DOTFILES_REPO_DIR: ${{ github.workspace }}
run: |
./install.sh --deps --force
ll ~