This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
Add a deprecation warning with pointers to WMF's pages on the topic #149
This file contains 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: "CI" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
ci-merge: | |
runs-on: ubuntu-latest | |
container: | |
image: docker-registry.wikimedia.org/bullseye:20221218 | |
options: --user root | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup Wikimedia Bullseye image | |
run: | | |
apt-get update -y | |
apt-get install python3-pip python3-dev python3-setuptools build-essential python3-enchant g++ gfortran git \ | |
liblapack-dev libopenblas-dev libenchant-2-2 wget -y | |
- name: Run all | |
run: | | |
make pip-install | |
make setup-image | |
make run-tests | |
outputs: | |
head-status: ${{ job.status }} |