Skip to content

Added the ability to specify an analysis vm name prefix when created by the GCEForensicsVM module #1378

Added the ability to specify an analysis vm name prefix when created by the GCEForensicsVM module

Added the ability to specify an analysis vm name prefix when created by the GCEForensicsVM module #1378

Workflow file for this run

name: Unit tests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
poetry:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Test with unittest
run: |
poetry run python -m unittest discover -s tests -p '*.py'