-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (45 loc) · 1.33 KB
/
linux-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
name: Linux CI
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [python]
pull_request:
branches: [python]
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
tox:
runs-on: ubuntu-22.04
env:
# This is a regex:
# https://github.com/tox-dev/tox/pull/990/files#diff-bfeb43314e311bd2d19d2b1ea565841101c8468f0df8cd3f86b4f199f06c0766
#
# We skip shellcheck because we already run it in its own job ^, which
# feels simpler than having to install shellcheck manually in here.
TOX_SKIP_ENV: shellcheck
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0 # For getting tags from the repo
- name: Cache .tox directory
uses: actions/cache@v3
with:
path: .tox
key: ${{ runner.os }}-${{ hashFiles('tox.ini') }}
- name: Create a virtualenv
run: |
python3 -m venv env
- name: Install tox in our virtualenv
run: |
. ./env/bin/activate
pip install tox==4.0.9
- name: Run tox in our virtualenv
run: |
. ./env/bin/activate
tox