-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
1,490 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v4 | ||
- name: Set up pixi | ||
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 | ||
- name: pre-commit | ||
run: pixi run pre-commit-run --color=always --show-diff-on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
exclude: ^.pixi | ||
repos: | ||
- repo: local | ||
hooks: | ||
# ensure pixi environments are up to date | ||
# workaround for https://github.com/prefix-dev/pixi/issues/1482 | ||
- id: pixi-install | ||
name: pixi-install | ||
entry: pixi install -e default | ||
language: system | ||
always_run: true | ||
require_serial: true | ||
pass_filenames: false | ||
# typstyle | ||
- id: typstyle | ||
name: typstyle | ||
entry: pixi run typstyle -i | ||
language: system | ||
files: \.typ$ | ||
# pre-commit-hooks | ||
- id: trailing-whitespace-fixer | ||
name: trailing-whitespace-fixer | ||
entry: pixi run trailing-whitespace-fixer | ||
language: system | ||
types: [text] | ||
- id: end-of-file-fixer | ||
name: end-of-file-fixer | ||
entry: pixi run end-of-file-fixer | ||
language: system | ||
types: [text] | ||
# typos | ||
- id: typos | ||
name: typos | ||
entry: pixi run typos --force-exclude | ||
language: system | ||
types: [text] | ||
require_serial: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
social: ( | ||
email: "[email protected]", | ||
github: "jane-doe", | ||
linkedin: "jane-doe" | ||
linkedin: "jane-doe", | ||
), | ||
) | ||
|
||
|
@@ -31,13 +31,13 @@ | |
date: [4/2022 -- 7/2023], | ||
employer: [The Snake Company], | ||
title: [Snake Specialist], | ||
[#linebreak()#text(10pt, lorem(30))] | ||
[#linebreak()#text(10pt, lorem(30))], | ||
) | ||
#cv-entry( | ||
date: [4/2022 -- 7/2023], | ||
employer: [Viper Ventures], | ||
title: [Working Student], | ||
[#linebreak()#text(10pt, lorem(30))] | ||
[#linebreak()#text(10pt, lorem(30))], | ||
) | ||
|
||
= Programming Skills | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.