Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Celeo committed Feb 20, 2024
1 parent 6e26618 commit 2251bf6
Show file tree
Hide file tree
Showing 12 changed files with 487 additions and 31 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @celeo
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on:
push:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
if: |
!(github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]'))
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Install clippy
run: rustup component add clippy
- name: Run tests
run: cargo test --verbose --all
- name: Run clippy
run: cargo clippy
141 changes: 124 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
[package]
name = "new_site"
name = "vzdv"
version = "0.1.0"
authors = ["Celeo <[email protected]>"]
edition = "2021"
description = "vZDV VATSIM website"
readme = "README.md"
homepage = "https://github.com/Celeo/vzdv"
repository = "https://github.com/Celeo/vzdv"
documentation = "https://github.com/Celeo/vzdv"
license = "MIT OR Apache-2.0"
publish = false

[dependencies]
anyhow = "1.0.79"
axum = "0.7.4"
clap = { version = "4.5.1", features = ["derive"] }
log = "0.4.20"
minijinja = "1.0.12"
pretty_env_logger = "0.5.0"
Expand Down
Loading

0 comments on commit 2251bf6

Please sign in to comment.