Skip to content

Update README.md

Update README.md #28

Workflow file for this run

name: Documentation
on:
push:
branches: [master]
tags: '*'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Julia
uses: julia-actions/setup-julia@latest
with:
version: '1.9'
- name: Develop QUBODrivers.jl
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(path=pwd())'
- name: Build Package
uses: julia-actions/julia-buildpkg@latest
with:
project: "docs/"
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
run: julia --project=docs/ docs/make.jl