-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (52 loc) · 1.32 KB
/
code_checks.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
---
name: Code checks
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-checks
cancel-in-progress: true
jobs:
plugin_test:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: asdf_plugin_test
uses: asdf-vm/actions/plugin-test@v3
with:
command: gitui --version
- name: Checkout code
uses: actions/checkout@v4
- name: Install Tools with asdf
uses: asdf-vm/actions/install@v3
- name: Test plugin with bats
run: |
asdf plugin-add gitui "${GITHUB_WORKSPACE}"
bats --filter-tags type:features test
lint_and_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Tools with asdf
uses: asdf-vm/actions/install@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit checks
shell: bash
run: |
pre-commit run --all-files
- name: Test code with bats
run: |
bats --filter-tags type:code test