Skip to content

chore: update actions/download-artifact & actions/upload-artifact #25466

chore: update actions/download-artifact & actions/upload-artifact

chore: update actions/download-artifact & actions/upload-artifact #25466

name: verify unit tests count
on:
pull_request:
push:
branches:
- master
jobs:
collect-and-verify:
if: (github.repository == 'edx/edx-platform-private') || (github.repository == 'openedx/edx-platform' && (startsWith(github.base_ref, 'open-release') == false))
runs-on: ubuntu-20.04
steps:
- name: install system requirements
run: |
sudo apt-get update && \
sudo apt remove 'python-*' -y && \
sudo apt-get install --yes \
build-essential git language-pack-en libmysqlclient-dev libssl-dev libxml2-dev \
libxmlsec1-dev libxslt1-dev lynx xvfb pkg-config python3-pip python3-dev python3-venv && \
sudo rm -rf /var/lib/apt/lists/*
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: actions/checkout@v2
- name: install requirements
run: |
sudo make test-requirements
- name: verify unit tests count
uses: ./.github/actions/verify-tests-count