Skip to content

Commit 87cdf87

Browse files
authored
Merge pull request #1004 from ShutdownRepo/test-workflow
Adding test install workflow for GitHub Actions pipelines
2 parents 47ddf5d + 370b677 commit 87cdf87

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/install.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Install Volatility3 test
2+
on: [push, pull_request]
3+
jobs:
4+
5+
install_test:
6+
runs-on: ${{ matrix.host }}
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
host: [ ubuntu-latest, windows-latest ]
11+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
12+
steps:
13+
- uses: actions/checkout@v3
14+
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
20+
- name: Setup python-pip
21+
run: python -m pip install --upgrade pip
22+
23+
- name: Install dependencies
24+
run: |
25+
pip install -r requirements.txt
26+
27+
- name: Install volatility3
28+
run: pip install .
29+
30+
- name: Run volatility3
31+
run: vol --help

0 commit comments

Comments
 (0)