this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

wip: GHA docs build

+18
+18
.github/workflows/build-docs.yml
··· 1 + name: Build Docs 2 + run-name: ${{ github.actor }} is building docs 3 + on: [push] 4 + jobs: 5 + Build-Docs: 6 + runs-on: ubuntu-latest 7 + steps: 8 + - run: echo "The job was automatically triggered by a ${{ github.event_name }} event." 9 + - run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!" 10 + - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." 11 + - name: Check out repository code 12 + uses: actions/checkout@v4 13 + - run: echo "The ${{ github.repository }} repository has been cloned to the runner." 14 + - name: Install atmst python module 15 + run: | 16 + cd ${{ github.workspace }} 17 + python3 -m pip install . 18 + - run: echo "This job's status is ${{ job.status }}."