From 4c9def194e99654afce55c5634dfe1d63df7e794 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 2 Dec 2025 23:47:44 -0500 Subject: [PATCH] remove .vscode and .github --- .github/workflows/ci.yml | 50 ---------------------------------------- .vscode/settings.json | 5 ---- 2 files changed, 55 deletions(-) delete mode 100644 .github/workflows/ci.yml delete mode 100644 .vscode/settings.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 35e8ca0..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,50 +0,0 @@ -on: [push, pull_request] - -name: CI - -jobs: - check: - name: Check - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - name: Install toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - - - name: Install fonttools - run: sudo apt-get install -y fonttools libzstd-dev - - - name: Run cargo check - uses: actions-rs/cargo@v1 - with: - command: check - - parsing_test: - name: Tests - runs-on: ubuntu-latest - steps: - - name: Checkout sources - uses: actions/checkout@v2 - - - name: Install toolchain - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - - - name: Install fonttools - run: sudo apt-get install -y fonttools libzstd-dev - - - name: Install cargo-all-features - uses: actions-rs/install@v0.1 - with: - crate: cargo-all-features - version: latest - - run: cargo test-all-features diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 4ea1ad7..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "files.insertFinalNewline": true, - "editor.formatOnSave": true, - "files.trimTrailingWhitespace": true, -}