Skip to content

Commit

Permalink
ci: migrate ubuntu-latest to ubuntu-24.04 (#41)
Browse files Browse the repository at this point in the history
* ci: migrate ubuntu-latest to ubuntu-24.04
* ci: update codecov
  • Loading branch information
nh13 authored Dec 4, 2024
1 parent 6fc4c06 commit 691a717
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
environment: github-actions
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -21,6 +22,7 @@ jobs:
- name: Code Coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
Expand All @@ -38,7 +40,8 @@ jobs:
if: github.repository == 'fulcrumgenomics/sopt' && github.ref == 'refs/heads/main'

needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
environment: github-actions
env:
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
SONATYPE_PASS: ${{ secrets.SONATYPE_PASS }}
Expand Down

0 comments on commit 691a717

Please sign in to comment.