Setup GitHub (#2)
* Fix license identifier * Add CI tests A cached setup that includes cargo check, clippy, fmt, and test * Fix formatting * Remove explicit rustup install cargo, etc. is already installed, see: <https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md> * Add more context to cache prefix-key * Apply suggestions from code review * Ignore non-rust files * Remove unused matrix testing key * Use a better filename --------- Signed-off-by: Evan Lloyd New-Schmidt <evan@new-schmidt.com> Co-authored-by: Alexander Borsuk <170263+biodranik@users.noreply.github.com>
This commit is contained in:
parent
ddf6028465
commit
aba31775fa
3 changed files with 38 additions and 4 deletions
36
.github/workflows/rust-checks.yml
vendored
Normal file
36
.github/workflows/rust-checks.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Rust Checks
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- .gitignore
|
||||
- LICENSE
|
||||
- README.md
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: cargo check/clippy/fmt/test
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
RUST_BACKTRACE: 1
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
with:
|
||||
# Bump this to manually invalidate the build/dependency cache.
|
||||
# It is also keyed on the job, rustc version, Cargo.lock, and other
|
||||
# values explained here: https://github.com/Swatinem/rust-cache#cache-details
|
||||
prefix-key: "v0-rust"
|
||||
|
||||
- name: Check compilation
|
||||
run: cargo check --verbose --locked
|
||||
- name: Lint
|
||||
run: cargo clippy
|
||||
- name: Test
|
||||
run: cargo test --verbose --locked
|
||||
- name: Formatting
|
||||
run: cargo fmt --verbose --check
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "om-wikiparser"
|
||||
version = "0.0.0"
|
||||
license = "AGPL-3.0-or-later"
|
||||
license = "AGPL-3.0-only"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/organicmaps/wikiparser/"
|
||||
|
||||
|
|
|
@ -2,9 +2,7 @@
|
|||
// pv ~/Downloads/enwiki-NS0-20230401-ENTERPRISE-HTML.json.tar.gz | tar xzO | cargo run --release > /dev/null
|
||||
|
||||
use serde::Deserialize;
|
||||
use std::{
|
||||
io::{self, stdin, BufRead, BufReader, Write},
|
||||
};
|
||||
use std::io::{self, stdin, BufRead, BufReader, Write};
|
||||
|
||||
#[derive(Deserialize)]
|
||||
struct Page {
|
||||
|
|
Loading…
Add table
Reference in a new issue