Some checks failed
Test Multi-Language Environment / test-docker-isolation (push) Has been cancelled
21 lines
No EOL
636 B
YAML
21 lines
No EOL
636 B
YAML
name: Test Multi-Language Environment
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test-docker-isolation:
|
|
runs-on: ubuntu-latest # Наш раннер перехватит эту метку
|
|
|
|
steps:
|
|
- name: Check Out Code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test Python Container
|
|
uses: docker://python:3.11-slim
|
|
with:
|
|
args: python -c "print('Привет из изолированного Python в Docker!')"
|
|
|
|
- name: Test Node.js Container
|
|
uses: docker://node:20-alpine
|
|
with:
|
|
args: node -e "console.log('Привет из изолированной Node.js в Docker!')" |