Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gftea committed Jan 30, 2024
1 parent 05b2b98 commit f7cb266
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Start RabbitMQ server
run: ./start_rabbitmq.sh
Expand All @@ -33,7 +33,7 @@ jobs:
# runs-on: macos-11

# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - uses: docker-practice/actions-setup-docker@master

# - name: Start RabbitMQ server
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/regression_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check rust version
run: rustc -V; cargo -V; rustup -V

- name: cargo build (debug, all-features)
run: cargo build --all-features --verbose
Expand All @@ -48,7 +51,7 @@ jobs:
- stable
- 1.56
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -63,7 +66,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Start RabbitMQ server
run: ./start_rabbitmq.sh
Expand All @@ -87,7 +90,7 @@ jobs:
- name: Check rust version
run: rustc -V; cargo -V; rustup -V

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Start RabbitMQ server
run: ./start_rabbitmq.sh

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# codecov:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# - name: Start RabbitMQ server
# run: ./start_rabbitmq.sh
# - name: Cargo test instrumented
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Start RabbitMQ server
run: ./start_rabbitmq.sh
- name: Install rust toolchain
Expand Down

0 comments on commit f7cb266

Please sign in to comment.