Skip to content

Audit logs support (#41) #103

Audit logs support (#41)

Audit logs support (#41) #103

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ master ]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby:
- '3.0'
- 3.1
- 3.2
- 3.3
- 3.4
- 4.0
runs-on: ${{ matrix.os }}
env:
LOKALISE_API_TOKEN: 123abc
OAUTH2_CLIENT_ID: fake
OAUTH2_CLIENT_SECRET: fake
OAUTH2_TOKEN: fake
OAUTH2_REFRESH_TOKEN: fake
OAUTH2_CODE: fake
OAUTH2_TOKEN_REFRESHED: fake
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up Ruby
uses: ruby/setup-ruby@v1.314.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec
- name: Coveralls
uses: coverallsapp/github-action@v2