From 674325e56536c177e6cc06899826c6b00b09a6ed Mon Sep 17 00:00:00 2001 From: Vladislav Nepogodin Date: Mon, 27 Jun 2022 23:25:16 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20fix=20CI/CD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 2 +- .github/workflows/rust.yml | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 050fc25..e8d486a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "Cargo" # See documentation for possible values + - package-ecosystem: "cargo" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly" diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2ca29c4..3901f58 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,6 +58,18 @@ jobs: toolchain: nightly override: true components: rustfmt + + - name: install deps + run: | + sudo apt update + sudo apt install meson + shell: bash + + - name: Configure + shell: bash + run: | + meson --buildtype=release --prefix=/usr build + - uses: actions-rs/cargo@v1 with: command: fmt