Fix memory update overlay to emit delta instead of full remove+add #21
This file contains hidden or 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: Python linting and testing | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint_and_test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10"] | |
| 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 Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: 1.8.5 | |
| virtualenvs-create: true | |
| virtualenvs-in-project: true | |
| virtualenvs-path: .venv | |
| installer-parallel: true | |
| - name: Install musl-tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y musl-tools | |
| - name: Build init binary | |
| run: | | |
| make | |
| - name: Install dependencies | |
| run: | | |
| poetry install --no-interaction | |
| - name: Analysing the code with pylint | |
| run: | | |
| source .venv/bin/activate | |
| pylint $(git ls-files '*.py') | |
| - name: Running the tests with pytest | |
| run: | | |
| source .venv/bin/activate | |
| python -m pytest |