Skip to content

Commit

Permalink
Merge pull request #82 from jfrimmel/update-ci
Browse files Browse the repository at this point in the history
Update CI definitions
  • Loading branch information
jfrimmel authored Sep 17, 2024
2 parents fd17d94 + ab3a6db commit 11afe79
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 16 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Continuos Integration
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
Expand All @@ -25,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install valgrind
run: sudo apt install valgrind
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: windows-latest

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

- name: Install stable
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/msrv.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Minimum Supported Rust Version (MRSV)
on:
push:
branches:
- master
pull_request:
env:
CARGO_TERM_COLOR: always
MSRV: "1.51"
Expand All @@ -12,6 +9,6 @@ jobs:
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup update $MSRV && rustup default $MSRV
- run: cargo check
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Configure git user for Bot
run: |
git config --global user.email 'noreply@github.com'
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: Style
on:
push:
branches:
- master
pull_request:
defaults:
run:
shell: bash
Expand All @@ -12,7 +9,7 @@ jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup update stable && rustup default stable
- run: rustup component add rustfmt
- name: Check formatting
Expand Down

0 comments on commit 11afe79

Please sign in to comment.