This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Bump xu-cheng/latex-action from 2 to 3 #224
Workflow file for this run
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: | |
push: | |
jobs: | |
latex-paper: | |
name: 📄 LaTeX paper | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🏗️ Compile paper | |
uses: xu-cheng/latex-action@v3 | |
with: | |
working_directory: paper | |
root_file: touche22-axiomatic-reranking-query-reformulation.tex | |
latex-talk: | |
name: 📄 LaTeX talk | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🏗️ Compile talk | |
uses: xu-cheng/latex-action@v3 | |
with: | |
working_directory: talk | |
root_file: talk.tex | |
python-build: | |
name: 🏗️ Build Python wheels | |
runs-on: ubuntu-latest | |
env: | |
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: True | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🧰 Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: 🧰 Install dependencies | |
run: pip install build twine | |
- name: 🏗️ Build Python wheels | |
run: python -m build | |
- name: 🧪 Check package bundles | |
run: twine check dist/* | |
python-code-format: | |
name: 🔍 Check Python code format | |
runs-on: ubuntu-latest | |
env: | |
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: True | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🧰 Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: 🧰 Install dependencies | |
run: pip install .[tests] | |
- name: 🔍 Check Python code format | |
run: flake8 | |
python-lint: | |
name: 🔍 Lint Python code | |
runs-on: ubuntu-latest | |
env: | |
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: True | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🧰 Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: 🧰 Install dependencies | |
run: pip install .[tests] | |
- name: 🔍 Lint Python code | |
run: pylint -E grimjack | |
python-test: | |
name: 🧪 Test Python code | |
runs-on: ubuntu-latest | |
env: | |
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: True | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🧰 Install Protoc | |
run: sudo apt install protobuf-compiler | |
- name: 🧰 Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
- name: 🧰 Install dependencies | |
run: pip install .[tests] | |
- name: 🧪 Test Python code | |
run: pytest --cov --cov-report=term --cov-report=xml | |
- name: 📤 Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
docker-build: | |
name: 🏗️ Docker build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Check-out | |
uses: actions/checkout@v4 | |
- name: 🧰 Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: 🧰 Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: 🏗️ Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |