Skip to content

run cargo update, upgrade comrak, sentry, prometheus #2806

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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export DOCSRS_PREFIX=ignored/cratesfyi-prefix
export DOCSRS_DATABASE_URL=postgresql://cratesfyi:password@localhost:15432

# for local development with sqlx
export DATABASE_URL="$DOCSRS_DATABASE_URL"
export DATABASE_URL=postgresql://cratesfyi:password@localhost:15432

export DOCSRS_LOG=docs_rs=debug,rustwide=info
# To build with a PR that hasn't landed in a rust dist toolchain yet,
Expand Down
30 changes: 26 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: update rust toolchain
run: |
rustup override set stable
rustup update stable

- name: install `just`
run: sudo snap install --edge --classic just

Expand Down Expand Up @@ -71,6 +76,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: update rust toolchain
run: |
rustup override set stable
rustup update stable

- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -107,6 +117,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: update rust toolchain
run: |
rustup override set stable
rustup update stable

- name: restore build & cargo cache
uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -134,8 +149,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- id: install
run: rustup component add rustfmt
- name: update rust toolchain
run: |
rustup override set stable
rustup update stable
rustup component add rustfmt

- run: cargo fmt -- --check

Expand All @@ -145,8 +163,12 @@ jobs:

steps:
- uses: actions/checkout@v4
- id: install
run: rustup component add clippy

- name: update rust toolchain
run: |
rustup override set stable
rustup update stable
rustup component add clippy

- name: install `just`
run: sudo snap install --edge --classic just
Expand Down
Loading
Loading