Skip to content

Commit

Permalink
Merge pull request #602 from pangenome/AndreaGuarracino-patch-1
Browse files Browse the repository at this point in the history
update GitHub Actions workflow to use ubuntu-latest
  • Loading branch information
AndreaGuarracino authored Feb 12, 2025
2 parents c865f8e + e560a30 commit 1f4e248
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/build_and_test_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@ name: build and test

jobs:
build_and_test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install required packages
run: sudo apt-get update && sudo apt-get install -y
git
bash
cmake
make
g++
python3-dev
python3-distutils
autoconf
build-essential
libjemalloc-dev
run: |
sudo apt-get update
sudo apt-get install -y \
git \
bash \
cmake \
make \
g++ \
python3-dev \
python3-venv \
autoconf \
build-essential \
libjemalloc-dev
- name: Init and update submodules
run: git submodule update --init --recursive
- name: Build odgi
Expand Down

0 comments on commit 1f4e248

Please sign in to comment.