diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-31 07:58:11 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-31 07:58:11 -0500 |
| commit | 5f50b28cda2c5c87cbd7af6af4931284ac719843 (patch) | |
| tree | faf8261b2f047c405214d9d3d15de79811ca4747 /.github | |
| parent | 9311cb80ef9658537ea67b327db0646bd3511d03 (diff) | |
| download | pearl-5f50b28cda2c5c87cbd7af6af4931284ac719843.tar.gz pearl-5f50b28cda2c5c87cbd7af6af4931284ac719843.zip | |
chore: remove the CI workflow until a GitHub repo exists
GitHub Actions only run on github.com, and cjennings/pearl isn't there, so the workflow had nowhere to run and the README badge 404'd. I removed both. The workflow is preserved in history at 9311cb8 if a mirror repo gets set up later. The compose-window and refresh-view README docs stay; they document real features and don't depend on the repo.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 517c6c9..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - branches: [main] - -jobs: - test: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - # 27.1 is the package floor (see Eask / Package-Requires); the rest - # track the supported releases. snapshot is advisory. - emacs-version: - - "27.2" - - "28.2" - - "29.4" - - "30.1" - steps: - - uses: actions/checkout@v4 - - - uses: purcell/setup-emacs@master - with: - version: ${{ matrix.emacs-version }} - - - uses: emacs-eask/setup-eask@master - with: - version: "snapshot" - - - name: Install dependencies - run: make setup - - - name: Byte-compile (warnings are errors) - run: make compile - - - name: Lint (elisp-lint + checkdoc) - run: make lint - - - name: Run tests - run: make test - - # Advisory run against Emacs snapshot: surfaces upcoming breakage without - # blocking a merge when the dev build churns. - snapshot: - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/checkout@v4 - - uses: purcell/setup-emacs@master - with: - version: "snapshot" - - uses: emacs-eask/setup-eask@master - with: - version: "snapshot" - - run: make setup - - run: make compile - - run: make lint - - run: make test |
