undo that #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
sqlx-prepare: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: Swatinem/rust-cache@v2 | |
- run: nix develop -c cargo install sqlx-cli --version 0.6.3 --no-default-features --features rustls --features mysql | |
- run: nix develop -c bash -c "cd dwn-server && cargo sqlx prepare" | |
- run: nix develop -c bash -c "cd dwn-server && cargo sqlx prepare -- --tests" | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: "chore: sqlx prepare" | |
default_author: github_actions | |
check: | |
needs: sqlx-prepare | |
runs-on: ubuntu-latest | |
env: | |
SQLX_OFFLINE: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: Swatinem/rust-cache@v2 | |
- run: nix flake check --all-systems | |
- run: nix develop -c cargo doc --workspace --all-features --no-deps --document-private-items | |
- run: nix develop -c cargo test --workspace --all-features --features sqlx/offline | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: Swatinem/rust-cache@v2 | |
- run: nix develop -c cargo clippy --fix --no-deps | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: "chore: lint" | |
default_author: github_actions | |
fmt: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: Swatinem/rust-cache@v2 | |
- run: nix develop -c cargo fmt --all | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: "chore: format" | |
default_author: github_actions |