Add missing avatar decoration field to member update event #205
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
name: Import the library | |
on: | |
- push | |
- pull_request | |
jobs: | |
import: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Install Flit | |
run: pip install flit | |
- name: Install the package | |
run: flit install | |
- name: Import library | |
run: python -c 'import discord_typings' |