-
Notifications
You must be signed in to change notification settings - Fork 0
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
Janis Erdmanis
committed
Apr 10, 2024
1 parent
85972a2
commit 06e3c36
Showing
1 changed file
with
26 additions
and
0 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,26 @@ | ||
name: PeaceFounder BuletinBoard Audit | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
setup-and-run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Julia | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: '1.x' | ||
|
||
- name: Install Oxygen Package | ||
run: | | ||
julia -e 'using Pkg; Pkg.add("Oxygen")' # Replace "Oxygen" with the actual package name | ||
- name: Install PeaceFounder from GitHub | ||
run: | | ||
julia -e 'using Pkg; Pkg.add(url="https://github.com/PeaceFounder/PeaceFounder.jl")' | ||
- name: Execute PeaceFounder Audit | ||
run: | | ||
julia --project=. --eval "joinpath(dirname(dirname(Base.find_package(\"PeaceFounder\"))), \"bin\", \"audit.jl\") |> include" all --verbose . |