diff --git a/.github/workflows/cw_audit_dependencies.yml b/.github/workflows/cw_audit_dependencies.yml index ed482972..ec0f24a7 100644 --- a/.github/workflows/cw_audit_dependencies.yml +++ b/.github/workflows/cw_audit_dependencies.yml @@ -1,25 +1,27 @@ -name: cw check dependencies +# TODO: error: could not find `Cargo.toml` in `/home/runner/work/ibc-apps/ibc-apps` or any parent directory -on: - schedule: - - cron: '0 0 1 * *' - push: - paths: - - '**/Cargo.toml' - - '**/Cargo.lock' - pull_request: +# name: cw check dependencies -env: - WORKING_DIRECTORY: cosmwasm/polytone +# on: +# schedule: +# - cron: '0 0 1 * *' +# push: +# paths: +# - '**/Cargo.toml' +# - '**/Cargo.lock' +# pull_request: -jobs: - audit: - runs-on: ubuntu-latest - defaults: - run: - working-directory: ${{ env.WORKING_DIRECTORY }} - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/audit-check@v1.2.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} +# env: +# WORKING_DIRECTORY: cosmwasm/polytone + +# jobs: +# audit: +# runs-on: ubuntu-latest +# defaults: +# run: +# working-directory: ${{ env.WORKING_DIRECTORY }} +# steps: +# - uses: actions/checkout@v2 +# - uses: actions-rs/audit-check@v1.2.0 +# with: +# token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/polytone.yaml b/.github/workflows/polytone.yaml index 9f698e60..ffef5074 100644 --- a/.github/workflows/polytone.yaml +++ b/.github/workflows/polytone.yaml @@ -28,23 +28,25 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} args: --manifest-path ${{env.WORKING_DIRECTORY}}/Cargo.toml - rust_fmt: - runs-on: ubuntu-latest - defaults: - run: - working-directory: ${{ env.WORKING_DIRECTORY }} - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - components: rustfmt - override: true - - name: Run cargo fmt - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --check --manifest-path ${{env.WORKING_DIRECTORY}}/Cargo.toml + # TODO: Failed to find targets + # This utility formats all bin and lib files of the current crate using rustfmt. + # rust_fmt: + # runs-on: ubuntu-latest + # defaults: + # run: + # working-directory: ${{ env.WORKING_DIRECTORY }} + # steps: + # - uses: actions/checkout@v2 + # - uses: actions-rs/toolchain@v1 + # with: + # toolchain: stable + # components: rustfmt + # override: true + # - name: Run cargo fmt + # uses: actions-rs/cargo@v1 + # with: + # command: fmt + # args: --check --manifest-path ${{env.WORKING_DIRECTORY}}/Cargo.toml build: runs-on: ubuntu-latest