-
-
Notifications
You must be signed in to change notification settings - Fork 41
85 lines (66 loc) · 1.69 KB
/
workflow.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Main workflow
on:
pull_request:
push:
schedule:
- cron: 0 0 * * 5
jobs:
plugin_test:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v3
with:
command: direnv version
test:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
direnv:
- 2.34.0
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup asdf
uses: asdf-vm/actions/setup@v3
- name: macOS coreutils # needed by bats-core
if: matrix.os == 'macos-latest'
run: brew install coreutils
- name: Install bats-core
run: |
git clone --depth 1 --branch v1.6.0 https://github.com/bats-core/bats-core.git "$HOME/bats-core"
echo "$HOME/bats-core/bin" >>"$GITHUB_PATH"
- name: Run tests
run: |
asdf plugin-add direnv "$GITHUB_WORKSPACE"
asdf install direnv ${{ matrix.direnv }}
asdf global direnv ${{ matrix.direnv }}
make test
lint:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install shellcheck
run: brew install shellcheck
- name: Run ShellCheck
run: make lint
format:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install shfmt
run: brew install shfmt
- name: Run shfmt
run: make format-check