Skip to content
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

Put migrations in lexicographic order, and have migrate_to tests run in CI #263

Merged
merged 2 commits into from
Jul 5, 2023
Merged
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 .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Collect coverage data
run: cargo llvm-cov nextest --lcov --output-path lcov.info
run: cargo llvm-cov nextest --lcov --output-path lcov.info --workspace
- name: Upload coverage data to coveralls
uses: coverallsapp/github-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion migration/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ impl MigratorTrait for Migrator {
Box::new(m20230512_200213_make_task_max_batch_size_a_big_integer::Migration),
Box::new(m20230512_202411_add_two_urls_to_every_task::Migration),
Box::new(m20230616_223923_create_aggregators::Migration),
Box::new(m20230626_183248_add_is_first_party_to_aggregators::Migration),
Box::new(m20230620_195535_add_aggregators_to_tasks::Migration),
Box::new(m20230622_232534_make_aggregator_api_url_mandatory::Migration),
Box::new(m20230626_183248_add_is_first_party_to_aggregators::Migration),
Box::new(m20230630_175314_create_api_tokens::Migration),
]
}
Expand Down
Loading