-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (39 loc) · 945 Bytes
/
ci.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
name: CI
on:
push:
branches:
- '**'
release:
types: [released, prereleased]
jobs:
test-add:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Add permissions
run: chmod +x tests/add.sh && chmod +x AppToGrid.sh
- name: Test Add
working-directory: tests
run: bash add.sh
test-remove:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Add permissions
run: chmod +x tests/remove.sh && chmod +x AppToGrid.sh
- name: Test Remove
working-directory: tests
run: bash remove.sh
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@2.0.0
with:
version: v0.9.0
env:
SHELLCHECK_OPTS: -e SC2012