chore(deps): update actions/setup-java action to v4.7.0 #1252
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: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: jlumbroso/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.13' | |
- name: Install poetry | |
run: | | |
python -m pip install poetry==2.0.1 | |
- name: Configure poetry | |
run: | | |
python -m poetry config virtualenvs.in-project true | |
- name: Cache the virtualenv | |
uses: actions/[email protected] | |
with: | |
path: ./.venv | |
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: | | |
python -m poetry install | |
- name: Setup Perl | |
uses: shogo82148/[email protected] | |
with: | |
perl-version: "5.40.1" | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- name: Setup benchmarks | |
run: ./setup.sh | |
- name: Install Ubuntu packages | |
run: | | |
sudo apt-get install -y dos2unix \ | |
git \ | |
build-essential \ | |
subversion \ | |
perl \ | |
curl \ | |
unzip \ | |
cpanminus \ | |
make \ | |
gosu \ | |
locales | |
- name: Build and run tests | |
run: CI=true && python -m poetry run python -m pytest -sxv tests/ |