-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (30 loc) · 1.08 KB
/
verify-pull-request.yml
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
37
38
39
40
name: Verify Installation
permissions:
contents: read
on: [workflow_dispatch, pull_request, push]
jobs:
verify_homebrew_macos_12:
name: MacOS 12
runs-on: macos-12
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install Ockam
run: |
set -e
brew install build-trust/ockam/ockam
ockam --version
ls -l /usr/local/etc/bash_completion.d/ockam
echo "Ockam was successfully installed via Homebrew on MacOS 12." | tee -a $GITHUB_STEP_SUMMARY
verify_homebrew_ubuntu_22_04:
name: Ubuntu 22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install Ockam
run: |
set -e
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install build-trust/ockam/ockam
ockam --version
ls -l /home/linuxbrew/.linuxbrew/etc/bash_completion.d/ockam
echo "Ockam was successfully installed via Homebrew on Ubuntu 22.04." | tee -a $GITHUB_STEP_SUMMARY