emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/elisa 261aae5b2e 15/98: Add CI


From: ELPA Syncer
Subject: [elpa] externals/elisa 261aae5b2e 15/98: Add CI
Date: Wed, 17 Jul 2024 18:58:00 -0400 (EDT)

branch: externals/elisa
commit 261aae5b2e0fc12598e6f2069220b3cf959d0a80
Author: Sergey Kostyaev <kostyaev.sergey2@wb.ru>
Commit: Sergey Kostyaev <kostyaev.sergey2@wb.ru>

    Add CI
---
 .elpaignore                 |  2 ++
 .github/workflows/melpa.yml | 44 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/.elpaignore b/.elpaignore
new file mode 100644
index 0000000000..67ecf9143e
--- /dev/null
+++ b/.elpaignore
@@ -0,0 +1,2 @@
+.github
+imgs
diff --git a/.github/workflows/melpa.yml b/.github/workflows/melpa.yml
new file mode 100644
index 0000000000..bc265616ee
--- /dev/null
+++ b/.github/workflows/melpa.yml
@@ -0,0 +1,44 @@
+# This is a basic workflow to help you get started with Actions
+
+name: CI
+
+# Controls when the workflow will run
+on:
+  # Triggers the workflow on push or pull request events but only for the 
"main" branch
+  push:
+    branches: [ "main" ]
+  pull_request:
+    branches: [ "main" ]
+
+  # Allows you to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
+# A workflow run is made up of one or more jobs that can run sequentially or 
in parallel
+jobs:
+  test-melpa:
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      matrix:
+        emacs_version:
+          - 29.2
+        ignore_warnings:
+          - false
+        warnings_as_errors:
+          - false
+        check:
+          - melpa
+        file:
+          - elisa.el
+    # Steps represent a sequence of tasks that will be executed as part of the 
job
+    steps:
+      - uses: actions/checkout@v4
+      - uses: purcell/setup-emacs@master
+        with:
+          version: ${{ matrix.emacs_version }}
+      - uses: leotaku/elisp-check@master
+        with:
+          check: ${{ matrix.check }}
+          file: ${{ matrix.file }}
+          ignore_warnings: ${{ matrix.ignore_warnings }}
+          warnings_as_errors: ${{ matrix.warnings_as_errors }}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]