Skip to content

Adds async await.

Adds async await. #339

Workflow file for this run

# ----------------------
# <auto-generated>
#
# This file was generated with FlubuCore.
#
# To regenerate file execute flubu {{TargetName}} --ci={CIName}
#
# </auto-generated>
# ----------------------
name: build
on: [push, pull_request]
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Flubu
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8
- name: buildVersion
working-directory: src
run: flubu buildVersion --nd
- name: compile.linux
working-directory: src
run: flubu compile.linux --nd
- name: test.linux
working-directory: src
run: flubu test.linux --nd
- name: package.DotnetFlubu
working-directory: src
run: flubu package.DotnetFlubu --nd
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Flubu
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8
- name: buildVersion
working-directory: src
run: flubu buildVersion --nd
- name: compile.linux
working-directory: src
run: flubu compile.linux --nd
- name: test.linux
working-directory: src
run: flubu test.linux --nd
- name: package.DotnetFlubu
working-directory: src
run: flubu package.DotnetFlubu --nd
macos-latest:
name: macos-latest
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Flubu
run: dotnet tool install --global FlubuCore.Tool --version 5.1.8
- name: buildVersion
working-directory: src
run: flubu buildVersion --nd
- name: compile.linux
working-directory: src
run: flubu compile.linux --nd
- name: test.linux
working-directory: src
run: flubu test.linux --nd
- name: package.DotnetFlubu
working-directory: src
run: flubu package.DotnetFlubu --nd