Skip to content

Commit

Permalink
ci: Use a container and expand versions
Browse files Browse the repository at this point in the history
Use containers to build/test so it's not restricted to the OS versions
supported by Github runners.

Signed-off-by: Lucas De Marchi <[email protected]>
  • Loading branch information
lucasdemarchi committed Jul 12, 2024
1 parent c99905b commit a697936
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
container: ['ubuntu:22.04', 'ubuntu:24.04']

container:
image: ${{ matrix.container }}

steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-ubuntu
Expand Down

0 comments on commit a697936

Please sign in to comment.