Improve Github actions

This commit is contained in:
VirtuBox
2020-10-27 11:44:32 +01:00
committed by GitHub
parent f65a2044e4
commit 159bf51778

View File

@@ -1,11 +1,14 @@
name: CI
on: [push]
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04]
runs-on: ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2