mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
22 lines
650 B
YAML
22 lines
650 B
YAML
name: Remote tests
|
|
on: [push]
|
|
jobs:
|
|
remote_tests_python:
|
|
name: Remote Python tests
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CIRCLE_BRANCH: ${{ github.ref }}
|
|
CIRCLE_JOB: remote_tests_python
|
|
CIRCLE_BUILD_NUM: ${{ github.run_number }}
|
|
DCC_NEW_TMP_EMAIL: ${{ secrets.DCC_NEW_TMP_EMAIL }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: mkdir -m 700 -p ~/.ssh
|
|
- run: touch ~/.ssh/id_ed25519
|
|
- run: chmod 600 ~/.ssh/id_ed25519
|
|
- run: 'echo "$SSH_KEY" | base64 -d > ~/.ssh/id_ed25519'
|
|
shell: bash
|
|
env:
|
|
SSH_KEY: ${{ secrets.SSH_KEY }}
|
|
- run: scripts/remote_tests_python.sh
|