-
Notifications
You must be signed in to change notification settings - Fork 6
104 lines (102 loc) · 3.17 KB
/
test.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
name: "Test"
on:
pull_request:
push:
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: True
jobs:
tox:
name: "Test ${{ matrix.toxenv }}"
runs-on: "ubuntu-22.04"
strategy:
matrix:
include:
- python-version: "3.7"
toxenv: "py37"
- python-version: "3.8"
toxenv: "py38"
- python-version: "3.9"
toxenv: "py39"
- python-version: "3.10"
toxenv: "py310"
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v3"
with:
python-version: "${{ matrix.python-version }}"
- name: Install homebrew
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile
echo "::add-path::/home/linuxbrew/.linuxbrew/bin"
brew --version
- name: Install Siegfried
run: |
brew install richardlehane/digipres/siegfried
- name: Install and configure clamav
run: |
brew install clamav
- name: Install disktype
run: |
brew install disktype
- name: Install md5deep
run: |
brew install md5deep
- name: Install sleuthkit
run: |
brew install sleuthkit
- name: Install bulk_extractor
run: |
brew install bulk_extractor
- name: Install unhfs
run: |
curl -sfL -o hfsexplorer-2021.10.9-bin.zip https://github.com/unsound/hfsexplorer/releases/download/hfsexplorer-2021.10.9/hfsexplorer-2021.10.9-bin.zip
mkdir /usr/share/hfsexplorer
unzip hfsexplorer-2021.10.9-bin.zip -d /usr/share/hfsexplorer/
chmod +x /usr/share/hfsexplorer/bin/unhfs
- name: Run install script
run: |
./test-install.sh
shell: bash
- name: "Get pip cache dir"
id: "pip-cache"
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: "Cache pip packages"
uses: "actions/cache@v2"
with:
path: "${{ steps.pip-cache.outputs.dir }}"
key: "${{ runner.os }}-pip-${{ hashFiles('**/base.txt','**/test.txt') }}"
restore-keys: |
${{ runner.os }}-pip-
- name: "Install tox"
run: |
python -m pip install --upgrade pip
pip install tox
- name: "Run tox"
env:
TOXENV: ${{ matrix.toxenv }}
run: |
tox
lint:
name: "Lint"
runs-on: "ubuntu-22.04"
steps:
- name: "Check out repository"
uses: "actions/checkout@v3"
- name: "Set up Python"
uses: "actions/setup-python@v3"
with:
python-version: "3.10"
- name: "Install tox"
run: |
python -m pip install --upgrade pip
pip install tox
- name: "Run tox"
run: |
tox -e linting