changed sketch to python #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: general-tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: [pull_request] | |
jobs: | |
general-tests-job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
github-server-url: https://github.com/dogusyuksel/HM10-HM11_Driver.git | |
lfs: true | |
- name: Download Repos | |
run: | | |
./setup_environment.sh | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Project Docker | |
uses: docker/build-push-action@v5 | |
with: | |
load: true | |
tags: | | |
${{ secrets.DOCKER_REPO }}:master | |
context: . | |
file: docker/Dockerfile | |
pull: true | |
push: false | |
provenance: false | |
- name: pytest | |
run: | | |
./docker/run_docker.sh ${{ secrets.DOCKER_REPO }}:master "cd /workspace && pytest" | |
- name: flake8 | |
run: | | |
echo "'isort .' can be executed if needed" | |
./docker/run_docker.sh ${{ secrets.DOCKER_REPO }}:master "cd /workspace && flake8 --max-line-length=120" |