From 446f29032c07e985138690dd205d2d0707afe617 Mon Sep 17 00:00:00 2001 From: Alexey Tochin Date: Sat, 15 Jun 2024 17:11:13 +0200 Subject: [PATCH] wip --- .github/workflows/{verify_commit.yml => ci.yml} | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) rename .github/workflows/{verify_commit.yml => ci.yml} (80%) diff --git a/.github/workflows/verify_commit.yml b/.github/workflows/ci.yml similarity index 80% rename from .github/workflows/verify_commit.yml rename to .github/workflows/ci.yml index ccdba69..e431929 100644 --- a/.github/workflows/verify_commit.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,12 @@ -name: Verify Commit +name: CI run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 on: [push] jobs: - Explore-GitHub-Actions: - runs-on: tensorflow/tensorflow:2.3.4 + CI-GitHub-Actions: + # Containers must run in Linux based operating systems + runs-on: ubuntu-latest + # Docker Hub image that `container-job` executes in + container: tensorflow/tensorflow:2.3.4 steps: - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"