From 1976ede725afa7b64a6b79d80e686f9c9bd2d3b0 Mon Sep 17 00:00:00 2001 From: Radu Marias Date: Sat, 8 Jun 2024 04:29:45 +0300 Subject: [PATCH] Delete .github/workflows/tests.yml --- .github/workflows/tests.yml | 81 ------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml deleted file mode 100644 index dbfea19..0000000 --- a/.github/workflows/tests.yml +++ /dev/null @@ -1,81 +0,0 @@ -name: tests - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - test_linux: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m venv .env - source .env/bin/activate - python -m pip install --upgrade pip - pip install -r requirements.txt - maturin develop --release - - name: Run tests - run: | - source .env/bin/activate - ./tests.sh - - test_macos: - runs-on: macos-latest - strategy: - matrix: - python-version: [3.8, 3.9, "3.10"] - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m venv .env - source .env/bin/activate - pip install -r requirements.txt - maturin develop --release - - name: Run tests - run: | - source .env/bin/activate - ./tests.sh - - test_windows: - runs-on: windows-latest - strategy: - matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m venv .env - .env\Scripts\activate - pip install -r requirements.txt - maturin develop --release - - name: Run tests - run: | - .env\Scripts\activate - pytest - python examples/lock_and_zeroize.py