Skip to content

CI on schedule (on 1st and 15th days every month) #377

CI on schedule (on 1st and 15th days every month)

CI on schedule (on 1st and 15th days every month) #377

Workflow file for this run

name: Run tests with triqs
on:
push:
pull_request:
schedule:
- cron: '0 0 1,15 * *' # JST 9:00 on 1st and 15th every month
jobs:
all-tests:
runs-on: ubuntu-latest
steps:
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- name: pytest
run: |
export LOCAL_UID=$(id -u $USER)
export LOCAL_GID=$(id -g $USER)
echo "LOCAL_UID=${LOCAL_UID}" > .env
echo "LOCAL_GID=${LOCAL_GID}" >> .env
docker compose up -d dcoretest
- run: echo "This job's status is ${{ job.status }}."