From 47df19ea7e9a98953c20c591a9d06538b007f5c3 Mon Sep 17 00:00:00 2001 From: stelzo Date: Tue, 25 Jul 2023 21:18:34 +0200 Subject: [PATCH] ubuntu action and linting without features --- .github/workflows/ubuntu.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ubuntu.yml diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 0000000..760c03e --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,24 @@ +name: Pure latest Ubuntu without integrations + +on: + push: + pull_request: + workflow_dispatch: + +env: + CARGO_TERM_COLOR: always + +jobs: + tests_galactic: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install latest Rust + run: | + curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y + rustc --version + cargo --version + - name: Linting + run: cargo clippy --all-targets -- -D warnings + - name: Tests + run: cargo test