From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from [87.239.111.99] (localhost [127.0.0.1]) by dev.tarantool.org (Postfix) with ESMTP id A01C1559A05; Wed, 2 Aug 2023 11:55:54 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org A01C1559A05 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1690966554; bh=jPinJRdSFMwJekSlKH33hFzDM6G+xgOeNlw2MhFyG5M=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=wiSJsDwHiRydYzQrNuD0mlEYjXWCN7ww4wMe1Z6IWhH9jLrfbSQ25TGCT0SS3TKnx oVx4DJI9n4+zSgGJTvHODxkYLlLWI+TVc6TriedfyB7k/bAvYuBCOHrgqWTRG6owYt wDaFCcwj+yPsRiQyZ/wXmA0JO3I7FkbQbL5U4cAk= Received: from mail-ej1-f51.google.com (mail-ej1-f51.google.com [209.85.218.51]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id AF107559A05 for ; Wed, 2 Aug 2023 11:55:29 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org AF107559A05 Received: by mail-ej1-f51.google.com with SMTP id a640c23a62f3a-99c4923195dso49214166b.2 for ; Wed, 02 Aug 2023 01:55:29 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1690966528; x=1691571328; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=Y4ZaVxRQQomMYoXytWGY/3gFfdgK2ROAuyq80KgCk6s=; b=MymOM0QrGREk9rf646zkvul7InakwFBGnz6p086e/wUGlrhGIsDdkHm2pPss51IXqb o8wd7F1Uewo0Y/0wYRrNCTajbLcbp289SlXmirH2j/9a1i8/W3U+8CFVf0VB12fqc5Jb Bpt5zxPxI80upKYiVQLbmv9Bcvn/Jw1VRETPU/wzvPbxzzWM/w44DAZtxZVGVzO4qiBS /CFyMlnAeeR/+L33HrhDrB12MzZw+ldeEeu4TQkPcxkS9QjK22pojFl8T36FV6pOSpCa cwZDi/AJ6nZnK1DwF+6zD5e9ouqXSZQ63KTT5wIhKeQ+qtGL0t1FsL6wMSphQyUn/pHA /oXA== X-Gm-Message-State: ABy/qLZBGfvD0D6vzNUUwpQmHfa8kMDkJ7FRZD9Um4TvElHTcFUf0Dl7 1Ao/NPuQbRTImx/bx0P2n0QzdilBLsY= X-Google-Smtp-Source: APBJJlGdrUtxWW2itfQBTnFlxcnRq+Z6nJTx8idY6h8goOlGYVHrj8Fuf6DFgDTWPJscMUH5XvpecA== X-Received: by 2002:a17:907:760e:b0:993:e860:f20 with SMTP id jx14-20020a170907760e00b00993e8600f20mr4700723ejc.19.1690966528420; Wed, 02 Aug 2023 01:55:28 -0700 (PDT) Received: from pony.. ([185.6.247.97]) by smtp.gmail.com with ESMTPSA id jt9-20020a170906dfc900b0098dfec235ccsm8780125ejc.47.2023.08.02.01.55.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 02 Aug 2023 01:55:28 -0700 (PDT) To: tarantool-patches@dev.tarantool.org, Sergey Kaplun , max.kokryashkin@gmail.com Date: Wed, 2 Aug 2023 11:52:18 +0300 Message-Id: X-Mailer: git-send-email 2.34.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 1/5][v3] ci: fix a step name X-BeenThere: tarantool-patches@dev.tarantool.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Sergey Bronnikov via Tarantool-patches Reply-To: Sergey Bronnikov Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" From: Sergey Bronnikov Fixed an incorrect name in a github actions step. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 70c98104..8154a622 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -48,6 +48,6 @@ jobs: echo CMAKE_BUILD_PARALLEL_LEVEL=$(($(nproc) + 1)) | tee -a $GITHUB_ENV - name: configure run: cmake -S . -B ${{ env.BUILDDIR }} -G Ninja - - name: test + - name: luacheck run: cmake --build . --target LuaJIT-luacheck working-directory: ${{ env.BUILDDIR }} -- 2.34.1