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 .. +