Skip to content

github ci update

github ci update #241

name: Tests and checks
on:
push:
jobs:
tests:
name: App tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Setup poetry
run: |
curl -sSL https://install.python-poetry.org/ | python - && echo "$HOME/.poetry/bin" >> $GITHUB_PATH
env:
POETRY_VERSION: 1.4.2
- name: Install dependencies
run: |
poetry install

Check failure on line 28 in .github/workflows/tests_and_checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests_and_checks.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
- name: [Unit] Test with pytest
run: |
poetry run pytest tests -m unit
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- run: npm install --save-dev hardhat
- name: Run hardhat
run: |
npx hardhat node --fork ${{ secrets.WEB3_RPC_ENDPOINT }}
- name: [Integration] Test with pytest
run: |
poetry run pytest tests -m integration
env:
WEB3_RPC_ENDPOINTS: http://127.0.0.1:8545
security:
uses: lidofinance/linters/.github/workflows/security.yml@master
permissions:
security-events: write
contents: read
docker:
uses: lidofinance/linters/.github/workflows/docker.yml@master
actions:
uses: lidofinance/linters/.github/workflows/actions.yml@master