From 3956592cf8fe872c753a2581b8863b710c727a69 Mon Sep 17 00:00:00 2001 From: Todd Anderson Date: Fri, 19 Apr 2024 13:40:46 -0500 Subject: [PATCH] removing general ci workflow that is no longer required --- .github/workflows/ci.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index f9aaf7fd..00000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: CI -on: - push: - branches: [main, 'feat/**'] - paths-ignore: - - '**.md' # Do not need to run CI for markdown changes. - pull_request: - branches: [main, 'feat/**'] - paths-ignore: - - '**.md' - -jobs: - build-and-test: - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - fail-fast: false - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/ci - with: - run_tests: true - # Running contract tests on windows is currently cumbersome. - # Once that has been addressed, then running contract tests on windows should be considered. - run_contract_tests: ${{ matrix.os != 'windows-latest' }} - token: ${{ secrets.GITHUB_TOKEN }} - - build-docs: - runs-on: ubuntu-latest - permissions: - id-token: write - contents: read - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/build-docs