From 1281e79fecf9bd1202a3e2e7ff33fd27d8f85363 Mon Sep 17 00:00:00 2001 From: Mikhail Mikhasenko Date: Wed, 21 Aug 2024 23:30:45 +0200 Subject: [PATCH] remove old test files --- .github/workflows/TagBot.yaml | 30 --------------------- .github/workflows/ci.yaml | 49 ----------------------------------- 2 files changed, 79 deletions(-) delete mode 100644 .github/workflows/TagBot.yaml delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/TagBot.yaml b/.github/workflows/TagBot.yaml deleted file mode 100644 index d37fd11..0000000 --- a/.github/workflows/TagBot.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: TagBot -on: - issue_comment: - types: - - created - workflow_dispatch: - inputs: - lookback: - default: "3" -permissions: - actions: read - checks: read - contents: write - deployments: read - issues: read - discussions: read - packages: read - pages: read - pull-requests: read - repository-projects: read - security-events: read - statuses: read -jobs: - TagBot: - if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' - runs-on: ubuntu-latest - steps: - - uses: JuliaRegistries/TagBot@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index ff4f73d..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,49 +0,0 @@ -name: Julia package test -on: - push: - branches: - - main - - master - pull_request: - branches: - - main - - master -jobs: - test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - version: - - "1.7" - - "1.9" - - "nightly" - os: - - ubuntu-latest - - macOS-latest - - windows-latest - arch: - - x64 - steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 - with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest - - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v1 - with: - file: lcov.info