Make hooks work for the top-level type #104
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
# Github worflow to test Agora on a variety of platforms | |
# | |
# Also uploads the documentation to Github pages. | |
# | |
# Note: | |
# - Try to use the native Github action syntax (${{ expression }}) when possible, | |
# as they are substituted with their value in the logs, unlike env variable. | |
# For example use `${{ github.workspace }}` over `${GITHUB_WORKSPACE}` | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
main: | |
name: Run | |
# The configuration matrix: We define all possible combinations here, | |
# then add excludes for things we don't want to test, | |
# and include to specify job-specific data. | |
strategy: | |
# Disable `fail-fast` because we want the whole test suite to run even if one | |
# of the nigthly is broken | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-20.04, macOS-11, windows-2019 ] | |
dc: [ dmd-latest, ldc-latest, dmd-master, ldc-master ] | |
# Define job-specific parameters | |
include: | |
# By default, don't generate artifacts nor run extra checks for push | |
- { artifacts: false, run_extra_checks: false } | |
- { dc: ldc-latest, artifacts: true, run_extra_checks: true } | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 60 | |
steps: | |
# Checkout this repository and its submodules | |
- uses: actions/checkout@v2 | |
# Install the D compiler | |
- name: Prepare compiler | |
uses: dlang-community/setup-dlang@v1 | |
with: | |
compiler: ${{ matrix.dc }} | |
# Add whatever debugging information can be useful in the long run here | |
- name: Print system information | |
shell: bash | |
run: | | |
${DC} --version | |
dub --version | |
- name: 'Run unittests' | |
shell: bash | |
run: dub test --compiler=$DC -b unittest-cov -c unittest | |
- name: 'Upload code coverage' | |
uses: codecov/codecov-action@v1 | |
with: | |
flags: unittests |