Fix package mgr check #21
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: Validate bootstrapping works | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
container: ${{ matrix.container }} | |
strategy: | |
fail-fast: false | |
matrix: | |
name: [ubuntu-latest] | |
os: [ubuntu-latest] | |
include: | |
- name: macos-latest | |
os: macos-latest | |
- name: rockylinux-9 | |
os: ubuntu-latest | |
container: 'rockylinux/rockylinux:9' | |
steps: | |
- name: Bootstrap the agent | |
run: bash <(curl -Lks https://raw.githubusercontent.com/mpeterson/dotfiles/master/bootstrap-dotfiles.sh) | |
- name: Load zsh | |
run: zsh -l |