Added save button to side panel. #204
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: Rust | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: news | |
POSTGRES_PASSWORD: news | |
POSTGRES_DB: news | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install postgres client | |
run: sudo apt-get install -y postgresql-client | |
- name: Setup tables | |
run: psql "postgres://news:news@localhost/news" -a -f "sql/0-create_tables.sql" | |
- name: Prepare directories | |
run: mkdir -p data/profile-pictures | |
- name: Check code | |
run: cargo check --quiet --features=fail-on-warnings | |
env: | |
DATABASE_URL: "postgres://news:news@localhost/news" | |
- name: Check format | |
run: cargo fmt --check | |
- name: Clippy | |
run: cargo clippy --quiet | |
env: | |
DATABASE_URL: "postgres://news:news@localhost/news" | |
- name: Run tests | |
run: cargo test --quiet | |
env: | |
DATABASE_URL: "postgres://news:news@localhost/news" |