Skip to content

Commit

Permalink
[ci] added ubuntu-18.04 to the list of CI targets (duh)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed Aug 25, 2021
1 parent 4f9bd61 commit b56e8cc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run-tests.yml
Expand Up @@ -13,13 +13,15 @@ on:

jobs:
build:
name: "Run Unit tests"
runs-on: [ubuntu-20.04, ubuntu-18.04]
strategy:
fail-fast: false
matrix:
os: ['ubuntu-20.04', 'ubuntu-18.04']
name: "Run Unit tests on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit b56e8cc

Please sign in to comment.