Skip to content

fix workflow image tags #2

fix workflow image tags

fix workflow image tags #2

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

Check failure on line 3 in .github/workflows/pytest-devcontainer.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pytest-devcontainer.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
name: Pytest Python Package In Devcontainer
on:
# push:
# branches: [ "main", "pytest" ]
branches: [ "pytest" ]
# pull_request:
# branches: [ "main" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image: ["latest", "10.1.5ghidra3.11python-bookworm"]
steps:
- uses: actions/checkout@v3
- name: Test with pytest on devcontainer
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/clearbluejar/ghidra-python
cacheFrom: ghcr.io/clearbluejar/ghidra-python
imageTag: ${{matrix.image}}
push: never
runCmd: |
pip install --upgrade pip
pip install -e .
pip install -r tests/pytest-requirements.txt
pytest -rA