Skip to content

Commit

Permalink
update actions to use ubuntu 20.04 and python container
Browse files Browse the repository at this point in the history
  • Loading branch information
alistairewj committed Aug 17, 2024
1 parent 4e89550 commit 6c7eeaa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
# only run if PR is approved
if: github.event.review.state == 'approved'
runs-on: ubuntu-22.04
container: python:3.10

steps:
- name: Check out repository code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
mimic-iv-psql:
# only run if PR is approved
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container: python:3.10

services:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ jobs:
# only run if PR is approved
if: github.event.review.state == 'approved'
runs-on: ubuntu-20.04
container: python:3.10

steps:
- name: Check out repository code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Python dependencies
run: |
pip install pandas
Expand Down

0 comments on commit 6c7eeaa

Please sign in to comment.