Skip to content

Bump discord-py from 2.3.2 to 2.4.0 #1199

Bump discord-py from 2.3.2 to 2.4.0

Bump discord-py from 2.3.2 to 2.4.0 #1199

Workflow file for this run

#
#
# 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