chg: [internal] Update GitHub actions

pull/648/head
Jakub Onderka 2024-01-06 13:07:39 +01:00
parent c65c65621f
commit 4f892b5a94
1 changed files with 14 additions and 13 deletions

View File

@ -19,16 +19,12 @@ jobs:
- name: Install packages - name: Install packages
run: | run: |
sudo apt-get install libpoppler-cpp-dev libzbar0 tesseract-ocr sudo apt-get install libpoppler-cpp-dev libzbar0 tesseract-ocr
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Cache Python dependencies cache: 'pip'
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('REQUIREMENTS') }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
@ -42,12 +38,17 @@ jobs:
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Run server in background
run: |
misp-modules -l 127.0.0.1 -s 2>error.log &
sleep 5
- name: Check if server is running
run: |
curl -sS localhost:6666/healthcheck
- name: Test with pytest - name: Test with pytest
run: | run: |
# Run server in background
misp-modules -l 127.0.0.1 -s &
sleep 5
# Check if modules are running
curl -sS localhost:6666/modules
# Run tests
pytest tests pytest tests
- name: Show error log
if: always()
run: |
cat error.log