From adec5a6e7385f6a326311a03373c068743875c67 Mon Sep 17 00:00:00 2001 From: Laurent LAPORTE Date: Mon, 1 Jul 2024 18:13:02 +0200 Subject: [PATCH] ci: remove the compatibility.yml workflow, which is not used anymore. --- .github/workflows/compatibility.yml | 50 ----------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/compatibility.yml diff --git a/.github/workflows/compatibility.yml b/.github/workflows/compatibility.yml deleted file mode 100644 index c68b650e9b..0000000000 --- a/.github/workflows/compatibility.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: compatibility -on: - push: - branches: - - "compatibility" - -jobs: - python-test: - runs-on: ${{ matrix.os }} - strategy: - max-parallel: 9 - matrix: - os: [windows-latest, ubuntu-20.04, macOS-latest] - python-version: [3.8] - - steps: - - name: Checkout github repo - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-dev.txt - - name: Test with pytest - run: | - pytest - - npm-test: - runs-on: ${{ matrix.os }} - strategy: - max-parallel: 9 - matrix: - os: [windows-latest, ubuntu-20.04, macOS-latest] - node-version: [18.16.1] - steps: - - name: Checkout github repo - uses: actions/checkout@v4 - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: npm install - working-directory: webapp - - name: Build - run: npm run build - working-directory: webapp