Skip to content

Commit

Permalink
[WIP] action
Browse files Browse the repository at this point in the history
  • Loading branch information
mmonaco committed Jan 7, 2024
1 parent facedd4 commit 80e7a6e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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: sudo apt-get install -y sway
- name: Check Sway
run: sway --validate --config .config/sway/config

0 comments on commit 80e7a6e

Please sign in to comment.