Test for file existence #595
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ubuntu | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "README.md" | |
- "Makefile" | |
- "Dockerfile" | |
- "install/macos/**" | |
- ".chezmoiscripts/macos/**" | |
- "dot_tmux.conf.d/os/macos.conf" | |
- "tests/install/macos/**" | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- "README.md" | |
- "Makefile" | |
- "Dockerfile" | |
- "install/macos/**" | |
- ".chezmoiscripts/macos/**" | |
- "dot_tmux.conf.d/os/macos.conf" | |
- "tests/install/macos/**" | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
system: [server, client] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup dotfiles | |
env: | |
EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }} | |
SYSTEM: ${{ matrix.system }} | |
DOTFILES_DEBUG: 1 | |
EVENT_NAME: ${{ github.event_name }} | |
run: | | |
if [ "${EVENT_NAME}" == "push" ]; then | |
BRANCH_NAME="${{ github.ref_name }}" | |
elif [ "${EVENT_NAME}" == "pull_request" ]; then | |
BRANCH_NAME="${{ github.head_ref }}" | |
fi | |
export BRANCH_NAME | |
URL="https://raw.githubusercontent.com/shunk031/dotfiles/${BRANCH_NAME}/setup.sh" | |
echo "Download setup.sh from ${URL}" | |
printf '${EMAIL_ADDRESS}\n${SYSTEM}\n' | bash -c "$(wget -qO - $URL)" | |
# │ │ | |
# │ └─ Simulate inputting an system arcitecture into the config. | |
# └─ Simulate inputting an email address into the config. | |
- name: Test file existence | |
env: | |
SYSTEM: ${{ matrix.system }} | |
run: | | |
sudo apt-get install -y bats | |
cd $(chezmoi source-path)/../ | |
bats --filter-tags common,ubuntu:${SYSTEM} \ | |
tests/files/common.bats \ | |
tests/files/ubuntu.bats |