Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Apr 26, 2024
1 parent 92d779c commit fc5697f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-20.04]
runs-on: ${{ matrix.os }}
os:
- { image: ubuntu-22.04, name: linux }
- { image: ubuntu-20.04, name: linux }
runs-on: ${{ matrix.os.image }}
env:
CI_RUNS_ON: ${{ matrix.os }}
CI_OS_NAME: ${{ matrix.os.name }}
CI_RUNS_ON: ${{ matrix.os.image }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit fc5697f

Please sign in to comment.