Skip to content

Commit

Permalink
Update push.yml to newer actions; dont look for requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
cmacdonald authored Aug 28, 2024
1 parent 4f89605 commit d9b8e42
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Setup java
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
distribution: 'zulu'

- name: Install Terrier snapshot
if: matrix.terrier == '5.4-SNAPSHOT'
Expand All @@ -43,7 +43,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/naver/splade.git
pip install -r requirements.txt
pip install --timeout=120 .
pip install pytest
Expand Down

0 comments on commit d9b8e42

Please sign in to comment.