diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 89346fed..900eaa40 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,8 +16,8 @@ jobs: matrix: # https://github.com/actions/virtual-environments os: - - ubuntu-22.04 - - ubuntu-20.04 + # - ubuntu-22.04 + # - ubuntu-20.04 - macos-12 # - macos-13 - macos-14 @@ -26,30 +26,12 @@ jobs: uses: actions/checkout@v4 - name: Test Install Chezmoi - run: ./install.sh + run: | + hostname + scutil --get LocalHostName + sudo hostname testerrrrr + hostname + scutil --get LocalHostName + - - name: Test bashrc - run: bash -c "source ~/.bashrc" - - name: Test zshrc - run: zsh -vc "source ~/.zshrc" - - # - name: Test diff-so-fancy - # run: | - # #!/bin/zsh - # . $HOME/.shrc - # diff-so-fancy - - notifications: - runs-on: ubuntu-latest - needs: tests - steps: - - name: Slack Notice Action - uses: sonots/slack-notice-action@v3.1.6 - with: - status: ${{ job.status }} - icon_emoji: ':octocat:' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # required, but GitHub should automatically supply - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required - if: always() # Pick up events even if the job fails or is canceled.