Check for changes in cache_padded.rs #26
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: Check for changes in cache_padded.rs | |
on: | |
schedule: | |
- cron: "11 11 * * Mon" | |
jobs: | |
check-cache-padded: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Git repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Fetch newest stuff from crossbeam submodule | |
working-directory: crossbeam | |
run: | | |
git fetch origin master | |
- name: Check for changes in cache_padded.rs | |
working-directory: crossbeam | |
run: | | |
git diff origin/master -- crossbeam-utils/src/cache_padded.rs |