From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 045F6158042 for ; Fri, 15 Nov 2024 04:16:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21477E0973; Fri, 15 Nov 2024 04:16:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0B373E0973 for ; Fri, 15 Nov 2024 04:16:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37167342F9C for ; Fri, 15 Nov 2024 04:16:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90CBE18C4 for ; Fri, 15 Nov 2024 04:16:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1731644186.e18736795f935f340c638d48c7b39c23d3e78c2f.sam@gentoo> Subject: [gentoo-commits] proj/elt-patches:master commit in: .github/workflows/ X-VCS-Repository: proj/elt-patches X-VCS-Files: .github/workflows/build.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e18736795f935f340c638d48c7b39c23d3e78c2f X-VCS-Branch: master Date: Fri, 15 Nov 2024 04:16:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9fa6a0c3-571e-43a0-a634-8cb73946bc02 X-Archives-Hash: a9931cddff6cb36db37040d4bffbf5b5 commit: e18736795f935f340c638d48c7b39c23d3e78c2f Author: Sam James gentoo org> AuthorDate: Fri Nov 15 04:16:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 15 04:16:26 2024 +0000 URL: https://gitweb.gentoo.org/proj/elt-patches.git/commit/?id=e1873679 ci: add basic 'make check' workflow Signed-off-by: Sam James gentoo.org> .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..502583d --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +# GitHub actions workflow. +# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions + +name: CI + +on: [pull_request, push] + +jobs: + make: + steps: + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y build-essential autoconf + esac + - uses: actions/checkout@v4 + - name: Run tests + - run: | + make check