Cuts the ribbon for v2.3.0 #104
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: Joao Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build (${{ matrix.os[1] }}) | |
runs-on: ${{ matrix.os[0] }} | |
strategy: | |
matrix: | |
os: [[windows-latest, windows, joao.exe], [ubuntu-latest, linux, joao]] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.x' | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Install Meson + Ninja | |
run: pip install meson ninja | |
- name: Setup Meson | |
run: meson setup builddir/ --buildtype release | |
- name: Compile | |
run: meson compile -C builddir/ -v | |
- name: Run Tests | |
run: meson test -C builddir/ -v | |
- name: Upload Build Result | |
uses: actions/upload-artifact@v2 | |
with: | |
name: joao-${{ matrix.os[1] }} | |
path: builddir/${{ matrix.os[2] }} |