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:
Evan Lloyd New-Schmidt 2023-06-01 03:25:35 -04:00 committed by GitHub
parent ddf6028465
commit aba31775fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 4 deletions

36
.github/workflows/rust-checks.yml vendored Normal file
View 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

View file

@ -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/"

View file

@ -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 {