Skip to content

Commit

Permalink
feat: run smoke tests on bionic(20.04), jammy(22.04) and noble(24.04)
Browse files Browse the repository at this point in the history
Signed-off-by: Lincoln Wallace <[email protected]>
  • Loading branch information
locnnil committed Sep 5, 2024
1 parent 84e865e commit 99989ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Smoke Test

on:
push:
branches: [ main ]
branches: [ main, improve-smoke-tests ]
pull_request:
# Manual trigger
workflow_dispatch:
Expand Down Expand Up @@ -33,7 +33,10 @@ jobs:

smoke-test:
needs: build
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04, ubuntu-24.04 ]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down

0 comments on commit 99989ac

Please sign in to comment.