Remove Kaleidic section in the README #53
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: CI Pipeline | |
on: [push, pull_request] | |
jobs: | |
unit-tests: | |
name: Unit tests | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macOS-11] | |
dc: [dmd-2.098.1, ldc-1.28.1] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/[email protected] | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Unit tests | |
run: | | |
dub build | |
dub test | |
dub run --root mir-integration-example | |
- uses: codecov/[email protected] | |
integration-test: | |
name: Integration tests | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
dc: [dmd-2.098.1, ldc-1.28.1] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install D compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update | |
sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install influxdb libevent-dev | |
- name: Integration tests | |
run: | | |
sudo service influxdb start | |
cd integration | |
dub run --build=unittest -c integration | |
dub run --build=unittest -c integration-mir |