···11+name: Build Docs
22+run-name: ${{ github.actor }} is building docs
33+on: [push]
44+jobs:
55+ Build-Docs:
66+ runs-on: ubuntu-latest
77+ steps:
88+ - run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
99+ - run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
1010+ - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
1111+ - name: Check out repository code
1212+ uses: actions/checkout@v4
1313+ - run: echo "The ${{ github.repository }} repository has been cloned to the runner."
1414+ - name: Install atmst python module
1515+ run: |
1616+ cd ${{ github.workspace }}
1717+ python3 -m pip install .
1818+ - run: echo "This job's status is ${{ job.status }}."