Skip to content

Memory storage

Memory storage #60

Workflow file for this run

name: Test
on:
push:
branches: [ dev, main ]
pull_request:
branches: [ dev, main ]
jobs:
test:
uses: ./.github/workflows/test_inner.yml
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}

Check failure on line 15 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 15, Col: 5): Unexpected value 'runs-on' .github/workflows/test.yml (Line: 23, Col: 5): Unexpected value 'services'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
services:
# Label used to access the service container
redis:
# Docker Hub image
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
coverage-check:
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v2
- name: Retrieve coverage report
uses: actions/download-artifact@v4
with:
name: coverage_report
- name: Coverage Check
run: |
python3 tests/check_coverage.py