We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e7760 commit 51c323dCopy full SHA for 51c323d
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ pre-commit:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-python@v4
11
+ with:
12
+ python-version: '3.x'
13
+ - name: Install luacheck
14
+ run: |
15
+ sudo apt-get update
16
+ sudo apt-get install luarocks
17
+ sudo luarocks install luacheck
18
+ - uses: pre-commit/[email protected]
19
20
+ ci:
21
22
23
24
+ - uses: ruby/setup-ruby@v1
25
26
+ ruby-version: '3.0'
27
+ bundler-cache: true
28
+ - run: bundle exec rake test
0 commit comments