feat: add support for wasm addons #400
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: tests | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: ["master"] | |
workflow_dispatch: | |
jobs: | |
unit-tests: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Fluent CI | |
uses: fluentci-io/setup-fluentci@v5 | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run Dagger Pipelines | |
run: fluentci run . test | |
env: | |
DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
- name: Upload to Codecov | |
run: fluentci run codecov_pipeline | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |