init readme #8
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
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 . |