remove unused imports #43
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Fluent CI | |
uses: fluentci-io/setup-fluentci@v4 | |
- name: Run Build and e2e tests | |
run: | | |
fluentci run rust_pipeline build | |
ls -ltr target | |
rm -rf target/release/build target/release/deps target/release/examples target/release/incremental | |
fluentci run . e2e | |
env: | |
PACKAGE_NAME: fluentci-engine | |
FLUENTCI_ENGINE_HOST: 0.0.0.0 | |
WORK_DIR: ./fixtures | |
DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
- name: Run e2e tests (typescript sdk) | |
run: fluentci run . typesscipt_e2e | |
env: | |
FLUENTCI_ENGINE_HOST: 0.0.0.0 | |
WORK_DIR: ./sdk/typescript | |
DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }} |