diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..a80bb26 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,27 @@ +on: + workflow_dispatch: + push: + branches: + - master + schedule: + - cron: "0 2 * * 1-5" + +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true + +jobs: + test-job: + name: Test Job + runs-on: [ubuntu-latest] + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: PWD + run: pwd + - name: LS + run: ls -alh + - name: apt install sway + run: apt install sway + - name: Check Sway + run: sway --validate --config .config/sway/config