-
-
Notifications
You must be signed in to change notification settings - Fork 32
36 lines (29 loc) · 814 Bytes
/
ubuntu.yml
File metadata and controls
36 lines (29 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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