Bump reviewdog/action-pyflakes from 1.8.0 to 1.9.0 #45
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: SFSS | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
sfss-debian: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install SFSS deb | |
run: | | |
set -x | |
wget https://linux.dell.com/files/SANdbox/1.1.0/sfss-1.1.0.0038.deb.zip | |
unzip sfss-1.1.0.0038.deb.zip | |
sudo dpkg -i sfss-1.1.0.0038.deb | |
- name: Test SFSS deb | |
run: echo "TBD" | |
sfss-compose: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
# Workaround: https://github.com/docker/build-push-action/issues/461 | |
- name: Setup Docker buildx | |
uses: docker/setup-buildx-action@4c0219f9ac95b02789c1075625400b2acbff50b1 | |
- name: Start containers | |
run: docker-compose up -d | |
working-directory: "Centralized Discovery Controller (CDC)/SFSS" | |
- name: Logs | |
if: always() # TODO: replace with failure going forward | |
run: docker-compose logs | |
working-directory: "Centralized Discovery Controller (CDC)/SFSS" | |
- name: Stop containers | |
if: always() | |
run: docker-compose down | |
working-directory: "Centralized Discovery Controller (CDC)/SFSS" |