Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Jest
name: JavaScript

on:
push:
branches:
- master
paths:
- '.github/workflows/jest.yml'
- '.github/workflows/javascript.yml'
- '.node-version'
- 'javascript/package.json'
- 'javascript/pnpm-lock.yaml'
- 'javascript/**/*.js'
pull_request:
paths:
- '.github/workflows/jest.yml'
- '.github/workflows/javascript.yml'
- '.node-version'
- 'javascript/package.json'
- 'javascript/pnpm-lock.yaml'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: UnitTest
name: Python

on:
push:
branches:
- master
paths:
- '.github/workflows/unittest.yml'
- '.github/workflows/python.yml'
- '.python-version'
- 'python/run_unittests.sh'
- 'python/**/*.py'
pull_request:
paths:
- '.github/workflows/unittest.yml'
- '.github/workflows/python.yml'
- '.python-version'
- 'python/run_unittests.sh'
- 'python/**/*.py'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/minitest.yml → .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Minitest
name: Ruby

on:
push:
branches:
- master
paths:
- '.github/workflows/minitest.yml'
- '.github/workflows/ruby.yml'
- './ruby-version'
- 'ruby/Rakefile'
- 'ruby/**/*.rb'
pull_request:
paths:
- '.github/workflows/minitest.yml'
- '.github/workflows/ruby.yml'
- './ruby-version'
- 'ruby/Rakefile'
- 'ruby/**/*.rb'
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Actions Status: UnitTest](https://github.com/hayat01sh1da/coding-tests/workflows/UnitTest/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22UnitTest%22)
[![Actions Status: Minitest](https://github.com/hayat01sh1da/coding-tests/workflows/Minitest/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22Minitest%22)
[![Actions Status: Jest](https://github.com/hayat01sh1da/coding-tests/workflows/Jest/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22Jest%22)
[![Actions Status: JavaScript](https://github.com/hayat01sh1da/coding-tests/workflows/JavaScript/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22JavaScript%22)
[![Actions Status: Python](https://github.com/hayat01sh1da/coding-tests/workflows/Python/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22Python%22)
[![Actions Status: Ruby](https://github.com/hayat01sh1da/coding-tests/workflows/Ruby/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22Ruby%22)
[![Actions Status: CodeQL](https://github.com/hayat01sh1da/coding-tests/workflows/CodeQL/badge.svg)](https://github.com/hayat01sh1da/coding-tests/actions?query=workflow%3A%22CodeQL%22)

## 1. Common Environment
Expand Down
Loading