From 1e7fa58fdc9ed556909b03137e66b83a6dc01b68 Mon Sep 17 00:00:00 2001 From: ypodlesov Date: Sat, 13 Apr 2024 15:35:47 +0000 Subject: [PATCH] Add CI main. --- .github/workflows/main.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/main.yaml diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..01ddfd2 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,13 @@ +name: GitHub Actions Demo +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + Explore-GitHub-Actions: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: mkdir build + - run: cd build + - run: ls .. + - run: cmake .. +