Merge '2024_sem2' into zanliang4tz-dev, menu #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hashing Algorithms CI | |
on: | |
push: | |
branches: [2024_sem2] | |
paths-ignore: | |
- 'doc/**' # Ignore all files and subdirectories under "doc/" | |
- 'docs/**' # Ignore all files and subdirectories under "docs/" | |
pull_request: | |
branches: [2024_sem2] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Install and Test 🔧 | |
run: | | |
npm install | |
npm run test-hashinsert | |
npm run test-hashsearch | |
npm run test-hashdelete |