Skip to content

refactor!: remove cloud code from monopoly #51

refactor!: remove cloud code from monopoly

refactor!: remove cloud code from monopoly #51

Workflow file for this run

name: tests
on: pull_request
env:
TEST_TAG: monopoly-test:latest
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Git Crypt
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install git-crypt
echo '${{ secrets.GIT_CRYPT_KEY }}' | base64 --decode > /tmp/git-crypt-key
git-crypt unlock /tmp/git-crypt-key
rm /tmp/git-crypt-key
- name: Install pdftotext
run: |
sudo apt-get update
sudo apt-get -y install build-essential libpoppler-cpp-dev pkg-config
- name: Setup Python & Poetry
uses: ./.github/actions/setup-python-poetry
with:
python-version: "3.11"
poetry-version: "1.6.1"
- name: Run CI
run: poetry run task test