Linter badge fix #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: | |
push: | |
branches: [ "main", "development" ] | |
pull_request: | |
branches: [ "main", "development" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: blacktop/ghidra | |
env: | |
GHIDRA_INSTALL_DIR: /ghidra | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
apt update | |
apt install build-essential -y | |
apt install python3-pip -y | |
pip install -H -r requirements.txt | |
- name: Run tests | |
run: | | |
./ci/test.sh |