Fix formatting of maps: missing comma in the last element #93
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
compiler: [g++, clang++] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup SDL2 | |
run: sudo apt install libsdl2-dev libsdl2-gfx-dev -y | |
- name: Test | |
run: make -j 8 check CXX=${{ matrix.compiler }} |