Update CI/CD pipeline to handle Postgres migration #59
Workflow file for this run
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/CD | |
on: | |
- push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
check: | |
name: Run checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install SQLx CLI | |
run: | | |
mkdir -p ~/.local/bin | |
curl -L https://development-content.brioche.dev/tools/sqlx-cli_v0.7.1/sqlx -o ~/.local/bin/sqlx | |
curl -L https://development-content.brioche.dev/tools/sqlx-cli_v0.7.1/cargo-sqlx -o ~/.local/bin/cargo-sqlx | |
chmod +x ~/.local/bin/sqlx ~/.local/bin/cargo-sqlx | |
echo "$HOME/.local/bin" >> $GITHUB_PATH | |
- name: Set up database | |
run: | | |
cp .env.example .env | |
docker-compose up -d | |
- name: Check formatting | |
run: cargo fmt -- --check | |
# NOTE: We need to run `cargo check` before checking the | |
# database schema to prevent issues with the SQLx queries | |
# in `brioche-core` from interfering | |
- name: Cargo check | |
run: cargo check | |
- name: Check database schema | |
run: | | |
cargo sqlx prepare --check | |
- name: Check Clippy | |
run: cargo clippy --all -- -Dwarnings | |
test: | |
name: Run tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: cargo test | |
deploy: | |
name: Deploy | |
if: github.repository == 'brioche-dev/brioche-registry' && github.ref == 'refs/heads/main' | |
needs: [check, test] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up flyctl | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
- name: Deploy to Fly.io | |
run: flyctl deploy --remote-only | |
env: | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |