-
-
Notifications
You must be signed in to change notification settings - Fork 40
44 lines (39 loc) · 1.16 KB
/
macos-test.yaml
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
41
42
43
44
---
name: Integration Test on macOS
on: workflow_dispatch
env:
AQUA_LOG_COLOR: always
permissions: {}
jobs:
integration-test-macos:
timeout-minutes: 30
runs-on: macos-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.mod
cache: true
- run: go install ./cmd/aqua
- run: echo "${XDG_DATA_HOME:-$HOME/.local/share}/aquaproj-aqua/bin" >> "$GITHUB_PATH"
- run: aqua policy allow
- run: aqua i -l
working-directory: tests/macos
env:
GITHUB_TOKEN: ${{github.token}}
- run: aws-vault --version
working-directory: tests/macos
env:
GITHUB_TOKEN: ${{github.token}}
- run: aqua gr 99designs/aws-vault
env:
GITHUB_TOKEN: ${{github.token}}
- run: s3deploy -V
working-directory: tests/macos
env:
GITHUB_TOKEN: ${{github.token}}
- run: aqua gr bep/s3deploy
env:
GITHUB_TOKEN: ${{github.token}}