Bump docker/login-action from 1 to 3 #16
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
on: [push] | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
name: Test rendering PlantUML files | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Render PlantUML files | |
uses: ./ | |
with: | |
formats: "png,svg" | |
log-level: "debug" | |
id: render | |
- name: Print the rendered files | |
run: echo "The files that changed were ${{ steps.render.outputs.rendered-files }}" | |
- name: Verify test files are present | |
run: 'make verify' |