Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

psi #159

Merged
merged 15 commits into from Mar 6, 2024
Merged

psi #159

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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