Skip to content

Commit

Permalink
Final report (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronFeickert committed Jul 20, 2024
1 parent 265463c commit 66c7d51
Show file tree
Hide file tree
Showing 4 changed files with 442 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Prepare repository
uses: actions/checkout@v4
- name: Build document
uses: xu-cheng/latex-action@v3
with:
root_file: main.tex
post_compile: "if [[ $(grep -ic overfull *.log) != 0 ]]; then echo 'Margin overrun detected; failing...' && exit 1; fi"
- name: Store PDF
uses: actions/upload-artifact@v4
with:
name: Output PDF
path: ./*.pdf
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.aux
*.bbl
*.blg
*.fdb_latexmk
*.fls
*.log
*.out
*.pdf
*.synctex.gz
*.toc
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Salvium review

This repository contains the technical note from a review of aspects of the Salvium protocol performed by [Cypher Stack](https://cypherstack.com/).
Loading

0 comments on commit 66c7d51

Please sign in to comment.