Skip to content

fuck u twitter

fuck u twitter #19

Workflow file for this run

name: Python application
on:
push:
branches:
- dev
- master
paths:
- '**.py'
- '**.yml'
- '**.yaml'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Chrome
run: |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb
sudo apt-get install -f
- uses: actions/checkout@v3
- name: Cache Poetry dependencies
id: check_cache
uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install Poetry
run: |
pip install poetry
- name: Install dependencies
if: steps.check_cache.outputs.cache-hit != 'true'
run: |
python -m pip install --upgrade pip
python -m poetry install
- name: Test with unittest
run: |
python -m poetry run python -m unittest tests.CI
- name: Check if debug.png exists
run: |
if [ -f debug.png ]; then
echo "Debug.png file exists"
echo "::set-output name=debug_exists::true"
else
echo "Debug.png file does not exist"
echo "::set-output name=debug_exists::false"
fi
- name: Upload artifact
if: steps.check_debug.outputs.debug_exists == 'true'
uses: actions/upload-artifact@v2
with:
name: debug-artifact
path: debug.png