diff options
author | vitalyster | 2020-11-12 13:01:10 +0300 |
---|---|---|
committer | GitHub | 2020-11-12 13:01:10 +0300 |
commit | 79c7ea180db21f64500f12ed21ca9a751553ab2f (patch) | |
tree | b16ab357398d7f9122b81be4890b7e06c347ff8c /.github/workflows/ci.yml | |
parent | b9ed4fa687fc1ad2d3aa91ad439e5ee42abfbfca (diff) |
CI: no need in build matrix
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c60be7d6..c1af1bdd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,10 +4,7 @@ on: [push, pull_request] jobs: build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-20.04, windows-latest, macos-latest] + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Set up JDK |