diff --git a/.github/bors.toml b/.github/bors.toml index e23fdf07..bccf3bdd 100644 --- a/.github/bors.toml +++ b/.github/bors.toml @@ -1 +1 @@ -status = ["clippy", "build", "build-without-warnings","tests", "functional_tests" ] +status = ["clippy", "build-without-warnings","tests", "functional_tests" ] diff --git a/.github/workflows/build_test_fmt.yml b/.github/workflows/build_test_fmt.yml index 714a74c2..00504479 100644 --- a/.github/workflows/build_test_fmt.yml +++ b/.github/workflows/build_test_fmt.yml @@ -15,20 +15,17 @@ jobs: - name: Check the coding style run: | cargo fmt -- --check - + build: runs-on: ubuntu-latest - needs: coding-style steps: - - uses: actions/checkout@v2 - - name: Build jinko - run: | - cargo clippy + - name: echo + run: | + echo Hello build-without-warnings: runs-on: ubuntu-latest - needs: build steps: - uses: actions/checkout@v2 @@ -36,7 +33,7 @@ jobs: env: RUSTFLAGS: "-D warnings" # Trigger an error on warnings run: | - cargo clippy + cargo check tests-check: runs-on: ubuntu-latest