Ubuntu #757
This file contains hidden or 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 | |
| pull_request: | |
| schedule: | |
| - cron: "0 6 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Homebrew | |
| run: | | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH | |
| - name: Install some packages | |
| run: ./test linux | |
| - name: Test installed brew `ack` | |
| run: brew ls ack | |
| - name: Test installed brew `ag` | |
| run: brew ls ag | |
| - name: Test installed brew `bash` | |
| run: brew ls bash | |
| - name: Test installed brew `git` | |
| run: brew ls git | |
| - name: Test brew installed via Brewfile `jq` | |
| run: brew ls jq |