From 3e4bc9955fa3567b51020b224dfd3e385a69a3f1 Mon Sep 17 00:00:00 2001 From: Elton Cardoso do Nascimento <43186596+EltonCN@users.noreply.github.com> Date: Sun, 1 Dec 2024 17:54:02 -0300 Subject: [PATCH] Tests CI OS check --- .github/workflows/test.yml | 2 +- src/cst_python/memory_storage/logical_time.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37a2483..4562f50 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: services: # Label used to access the service container redis: - + if: ${{matrix.os == 'ubuntu-latest'}} # Docker Hub image image: redis # Set health checks to wait until redis has started diff --git a/src/cst_python/memory_storage/logical_time.py b/src/cst_python/memory_storage/logical_time.py index ade1729..7e84bd9 100644 --- a/src/cst_python/memory_storage/logical_time.py +++ b/src/cst_python/memory_storage/logical_time.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import abc import functools