Skip to content

Commit

Permalink
autoformat yaml and drop deprecated rust action. (#80)
Browse files Browse the repository at this point in the history
* autoformat yaml and drop deprecated rust action. github ci already exsists stable latest rust

* separate block jobs
  • Loading branch information
ArtemIsmagilov authored Nov 23, 2024
1 parent fa8aedb commit 6c4c0d5
Showing 1 changed file with 16 additions and 35 deletions.
51 changes: 16 additions & 35 deletions .github/workflows/compile_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: Build and Test

on:
push:
push:
paths:
- 'src/**'
- 'redis/**'
- '.github/workflows/**'
- 'Cargo.toml'
- "src/**"
- "redis/**"
- ".github/workflows/**"
- "Cargo.toml"
branches:
- '**'
- "**"
tags-ignore:
- '*.*.*'
pull_request:
- "*.*.*"
pull_request:
paths:
- 'src/**'
- '.github/workflows/**'
- 'Cargo.toml'
- "src/**"
- ".github/workflows/**"
- "Cargo.toml"
branches:
- '**'
- "**"
tags-ignore:
- '*.*.*'
- "*.*.*"

jobs:
check:
Expand All @@ -29,19 +29,9 @@ jobs:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

uses: actions/checkout@v4
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
run: cargo check

test:
name: Test
Expand All @@ -50,20 +40,11 @@ jobs:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
steps:
- name: Checkout sources
uses: actions/checkout@v3

uses: actions/checkout@v4
- name: Create Redis containers
run: |
cd /home/runner/work/rustis/rustis/redis/
sh ./docker_up.sh
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Run cargo test
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 6c4c0d5

Please sign in to comment.