Skip to content

refactor: remove old eslint configuration #31

refactor: remove old eslint configuration

refactor: remove old eslint configuration #31

Workflow file for this run

name: Backend CI
on:
push:
branches:
- "**"
jobs:
persistence-unit-tests:
name: Unit tests for persistence functions
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Cache pip dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Give execution permissions to script
run: chmod +x tests_runners/persistence/locally.sh
- name: Run tests
run: tests_runners/persistence/locally.sh