Skip to content

βœ… try using Github Actions instead of travis #12

βœ… try using Github Actions instead of travis

βœ… try using Github Actions instead of travis #12

Workflow file for this run

name: Run Isabl CLI tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Configure credential helper to clone private repos
run: |
echo '#!/bin/bash' > ~/.git-credential-helper.sh
echo 'echo username=${{ secrets.GH_USERNAME }}' >> ~/.git-credential-helper.sh
echo 'echo password=${{ secrets.GH_PAT }}' >> ~/.git-credential-helper.sh
chmod +x ~/.git-credential-helper.sh
git config --global credential.helper "/bin/bash ~/.git-credential-helper.sh"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: bash tests/test-with-compose.sh
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}