Bump tinytag from 1.10.1 to 2.0.0 #1288
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
# | |
# | |
# yamllint disable rule:line-length | |
--- | |
name: website-test | |
# execute this workflow automatically when a we push to master | |
on: [push] # yamllint disable-line rule:truthy | |
jobs: | |
build_docs_job: | |
runs-on: ubuntu-latest | |
container: debian:stable-slim | |
steps: | |
- name: Prereqs | |
run: | | |
apt-get update | |
apt-get install -y git python3-pip | |
shell: bash | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: test | |
run: | | |
chown -R $(id -u):$(id -g) "${PWD}" | |
shell: bash | |
# - name: check | |
# run: | | |
# pip3 install . | |
- name: Execute script to build our documentation and update pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: "./build-website.sh" | |
shell: bash |