Skip to content

Commit

Permalink
adding workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Janis Erdmanis committed Apr 10, 2024
1 parent 85972a2 commit 06e3c36
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/audit_workflow.yml
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 .

0 comments on commit 06e3c36

Please sign in to comment.