diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..332e490 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Print a message + run: echo "Hello, GitHub Actions!" \ No newline at end of file