This repository has been archived on 2024-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
docker-run-action/.github/workflows/1-tests.yml
2021-02-15 15:58:29 -05:00

22 lines
446 B
YAML

name: Docker Run Action Tests
on:
push:
branches:
- main
pull_request:
jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./
with:
image: docker:20.10.3
run: |
echo "::set-output name=image_name::`uname -r`"
- uses: actions/github-script@v3
with:
script: |
console.log(core.getOutput('image_name'))