Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

71 changes: 0 additions & 71 deletions .github/workflows/ci.yaml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Deploy Quartz site to GitHub Pages

on:
push:
branches:
- v4

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for git info
- uses: actions/setup-node@v3
with:
node-version: 18.14
- name: Install Dependencies
run: npm ci
- name: Build Quartz
run: npx quartz build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: public

deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
Empty file removed content/.gitkeep
Empty file.
11 changes: 11 additions & 0 deletions content/blog/cargo-difftests/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: Cargo difftests blog
tags:
- cargo-difftests
- testing
---
This section of the blog contains a few blog posts which describe the evolution of [[cargo-difftests/index|cargo-difftests]].

- The [[part-3-upsilon-difftests|pre-introduction]] was a post from before `cargo-difftests` was extracted from my other major project at the time, [[blog/upsilon/index|upsilon]], for which it was more or less specifically made.
- [[introduction-old|The old introduction]] is from when I first announced the tool on r/rust. It has come a *very* long way since then.
- [[one-year-later|One year later]]: A post showing where `cargo-difftests` is/was 1 year after it was originally introduced (2023-02-12).
Loading