Skip to content

Commit

Permalink
Move strategy into correct location.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed Dec 23, 2020
1 parent a74d170 commit 13520b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: CI
on: [push,pull_request]
jobs:
strategy:
matrix:
compiler: [gcc, clang]
test:
strategy:
matrix:
compiler: [gcc, clang]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt-get install -y libgl1-mesa-dev freeglut3-dev ${{ matrix.compiler }}
run: sudo apt-get install -y scons libgl1-mesa-dev freeglut3-dev ${{ matrix.compiler }}
- name: build
run: scons

0 comments on commit 13520b7

Please sign in to comment.