Skip to content

Commit

Permalink
Merge pull request #159 from objectionary/psi
Browse files Browse the repository at this point in the history
psi
  • Loading branch information
yegor256 committed Mar 6, 2024
2 parents 9941686 + c6e087f commit 1db0191
Show file tree
Hide file tree
Showing 25 changed files with 735 additions and 422 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cargo.yml
Expand Up @@ -3,17 +3,17 @@ on:
push:
pull_request:
concurrency:
group: ${{ github.ref }}
group: cargo-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-20.04
cargo:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
java-version: 21
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/tarpaulin.yml
Expand Up @@ -2,10 +2,14 @@
name: tarpaulin
on:
push:
pull_request:
branches:
- master
concurrency:
group: tarpaulin-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-20.04
tarpaulin:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
Expand All @@ -18,4 +22,5 @@ jobs:
args: '-- --test-threads 1'
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .github/workflows/xcop.yml
Expand Up @@ -9,7 +9,7 @@ name: xcop
- master
jobs:
xcop:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: g4s8/xcop-action@master
3 changes: 2 additions & 1 deletion .rultor.yml
@@ -1,5 +1,5 @@
docker:
image: yegor256/rultor-image:1.17.2
image: yegor256/rultor-image:1.22.0
assets:
credentials: yegor256/objectionary-secrets#crates-credentials
install: |
Expand All @@ -9,6 +9,7 @@ merge:
cargo --color=never test -vv
cargo --color=never fmt --check
release:
pre: false
script: |-
[[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1
sed -i -e "s/^version = \"0.0.0\"/version = \"${tag}\"/" Cargo.toml
Expand Down

0 comments on commit 1db0191

Please sign in to comment.