We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c68225c commit e9510d1Copy full SHA for e9510d1
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: CI Tests
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+ workflow_dispatch:
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up Ruby
18
+ uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: '3.3'
21
22
+ - name: Run a simple test
23
+ run: |
24
+ echo "Running tests..."
25
+ ruby -e "puts 'Tests passed!'"
0 commit comments