Skip to content
Draft
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
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install miniserve
uses: taiki-e/install-action@351cce3d3afa3dbd66bbe6d30df1d481b1448522
with:
tool: miniserve
- name: Install sqlx-cli
run: cargo install sqlx-cli --version=${{ env.SQLX_VERSION }} --features ${{ env.SQLX_FEATURES }} --no-default-features --locked
- name: Create test database
Expand All @@ -33,5 +37,11 @@ jobs:
cargo sqlx database create
cargo sqlx migrate run
cargo sqlx prepare --check
- name: Start local http server
run: |
miniserve tests/static/local-server --port 8200 &
sleep 3
- name: Run tests
run: cargo test
run: cargo test -- --include-ignored
- name: Kill local server
run: pkill miniserve
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- Allow fetching bookmark title from remote server

## [v0.3.0] - Mar 10, 2025

### Added
Expand Down
Loading